You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
683 B
11 lines
683 B
package overall
|
|
|
|
//常量
|
|
var (
|
|
ConfigFilePathConstant = "./config/configApp/appConfig.yaml" //服务基础配置
|
|
ConfigDatabaseConstant = "./config/configDatabase/database.yaml"
|
|
ConfigRedisConstant = "./config/configNosql/redis.yaml"
|
|
EmployeeStatusIng = []int{1, 2, 3, 4, 5} //用工关系(1:实习生;2:待分配;3:试用员工;4:正式员工;5:停薪留职;6:退休;7:辞退;8:离职)
|
|
EmployeeStatusOld = []int{7, 8} //用工关系(1:实习生;2:待分配;3:试用员工;4:正式员工;5:停薪留职;6:退休;7:辞退;8:离职)
|
|
DockingKingdeeUrl = "http://36.134.44.40:18888"
|
|
)
|
|
|