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.
13 lines
1.0 KiB
13 lines
1.0 KiB
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, 6, 7, 8, 9, 10} //用工关系(1:临时工 , 2:编外人员 ;3:实习&实习生;4:试用员工;5:待分配;6:待岗;7:临时调入;8:正式员工;9:长期病假;10:停薪留职;11:退休;12:辞职;13:辞退;14:离职)
|
|
EmployeeStatusOld = []int{11, 12, 13, 14} //用工关系(1:临时工 , 2:编外人员 ;3:实习&实习生;4:试用员工;5:待分配;6:待岗;7:临时调入;8:正式员工;9:长期病假;10:停薪留职;11:退休;12:辞职;13:辞退;14:离职)
|
|
// DockingKingdeeUrl = "http://36.134.44.40:18888"
|
|
// DockingKingdeeUrl = "http://36.133.124.113:18888" //测试地址
|
|
DockingKingdeeUrl = "http://36.133.124.113:18888" //正式地址
|
|
)
|
|
|