Browse Source

封版

v2_dev
超级管理员 3 years ago
parent
commit
0f1eb0aa48
  1. 7
      api/version1/administrativeorganization/govcont.go
  2. 1
      api/version1/administrativeorganization/type.go
  3. 51
      api/version1/personnelapi/controll.go
  4. 8
      api/version1/personnelapi/kingdeenew.go
  5. 96
      api/version1/personnelapi/staffarchives.go
  6. 1
      api/version1/personnelapi/type.go
  7. 16
      api/version1/shiyan/shiyan.go
  8. 1
      apirouter/empowerrote/empowerroter.go
  9. 1
      apirouter/shiyanrouter/shiyan.go
  10. BIN
      hr_server.exe
  11. 12
      log/202207/20220703.log
  12. 15
      log/202207/20220704.log
  13. 9
      log/202207/20220705.log
  14. 14
      log/202207/20220706.log
  15. 17
      log/202207/20220707.log
  16. 15
      log/202207/20220708.log
  17. 15
      log/202207/20220709.log
  18. 17
      log/202207/20220710.log
  19. 15
      log/202207/20220711.log
  20. 6
      log/202207/20220712.log
  21. 16
      log/202207/20220713.log
  22. 16
      log/202207/20220714.log
  23. 20
      log/202207/20220715.log
  24. 20
      log/202207/20220716.log
  25. 20
      log/202207/20220717.log
  26. 20
      log/202207/20220718.log
  27. 4
      log/202207/20220719.log
  28. 16
      log/202207/20220720.log
  29. 20
      log/202207/20220721.log
  30. 20
      log/202207/20220722.log
  31. 4
      log/202207/20220723.log
  32. 16
      log/202207/20220726.log
  33. 20
      log/202207/20220727.log
  34. 36
      log/202207/20220728.log
  35. 16
      log/202207/20220729.log
  36. 15
      log/202207/20220730.log
  37. 15
      log/202207/20220731.log
  38. 3
      log/202208/20220801.log
  39. 2
      models/kingdee_log.go
  40. 1
      models/man_cont.go
  41. 2
      models/personarchives.go
  42. 4
      overall/app_constant.go
  43. BIN
      overall/overallhandle/__debug_bin.exe

7
api/version1/administrativeorganization/govcont.go

@ -276,7 +276,12 @@ func (o *OrganizationApi) GovThree(c *gin.Context) {
requestData.Id = idInt64
}
var govMap overallhandle.MenuList
gormDb := overall.CONSTANT_DB_HR.Model(&models.AdministrativeOrganization{}).Select("administrative_organization.*,aot.name as classname,aot.level").Joins("left join administrative_organization_type as aot on aot.id = administrative_organization.organization_type").Where("administrative_organization.`state` IN ?", []int{1, 2})
// gormDb := overall.CONSTANT_DB_HR.Model(&models.AdministrativeOrganization{}).Select("administrative_organization.*,aot.name as classname,aot.level").Joins("left join administrative_organization_type as aot on aot.id = administrative_organization.organization_type").Where("administrative_organization.`state` IN ?", []int{1, 2}).Where("administrative_organization.id NOT IN ?", []int{312, 293, 305, 306, 307})
gormDb := overall.CONSTANT_DB_HR.Model(&models.AdministrativeOrganization{}).Select("administrative_organization.*,aot.name as classname,aot.level").Joins("left join administrative_organization_type as aot on aot.id = administrative_organization.organization_type").Where("administrative_organization.`state` = ?", 1)
if requestData.All == 0 {
requestData.Id = 312
gormDb = gormDb.Where("administrative_organization.id NOT IN ?", []int{312, 293, 305, 306, 307})
}
if requestData.Level != 0 {
gormDb = gormDb.Where("aot.level <= ?", requestData.Level)
}

1
api/version1/administrativeorganization/type.go

@ -170,6 +170,7 @@ type positionOutInfo struct {
type govThreeType struct {
overallhandle.GetId
Level int `json:"level"`
All int `json:"all"`
}
/*

51
api/version1/personnelapi/controll.go

@ -2,24 +2,41 @@ package personnelapi
//用工关系转换
//1:实习生;2:待分配;3:试用员工;4:正式员工;5:停薪留职;6:退休;7:辞退;8:离职
func emptypeToInt(emp string) int {
//1:临时工 , 2:编外人员 ;3:实习&实习生;4:试用员工;5:待分配;6:待岗;7:临时调入;8:正式员工;9:长期病假;10:停薪留职;11:退休;12:辞职;13:辞退;14:离职
func EmptypeToInt(emp string) int {
switch emp {
case "实习生":
case "临时工":
return 1
case "待分配":
case "编外人员":
return 2
case "试用员工":
case "实习":
return 3
case "正式员工":
case "实习生":
return 3
case "试用员工":
return 4
case "停薪留职":
case "待分配":
return 5
case "退休":
case "待岗":
return 6
case "辞退":
case "临时调入":
return 7
case "离职":
case "正式员工":
return 8
case "长期病假":
return 9
case "停薪留职":
return 10
case "退休":
return 11
case "辞职":
return 12
case "辞退":
return 13
case "离职":
return 14
default:
return 1
}
@ -54,6 +71,8 @@ func maritalstatusToInt(name string) int {
return 3
case "离异":
return 4
case "离婚":
return 4
default:
return 1
}
@ -232,7 +251,7 @@ func changeTypeToInt(emp string) int {
/*
学历
(1初中及以下2中专3高中4中技5高技6专科7大学专科8本科9大学本科10硕士研究生11博士研究生12专家教授)
(1初中及以下2中专3高中4中技5高技6专科7大学专科8本科9大学本科10硕士研究生11博士研究生12专家教授)
*/
func ducationToInt(emp string) int {
@ -247,11 +266,11 @@ func ducationToInt(emp string) int {
return 4
case "高技":
return 5
case "函专科":
case "函专科":
return 6
case "大学专科":
return 7
case "函本科":
case "函本科":
return 8
case "大学本科":
return 9
@ -266,7 +285,7 @@ func ducationToInt(emp string) int {
}
}
//学位(0:无;1:学士;2:硕士;3:博士)int
//学位(0:无;1:学士;2:硕士;3:博士;4:工学学士;5:教育学学位)int
func hestacademicdegreeToInt(hir string) int {
switch hir {
case "学士":
@ -275,6 +294,12 @@ func hestacademicdegreeToInt(hir string) int {
return 2
case "博士":
return 3
case "学士学位":
return 1
case "工学学士":
return 4
case "教育学学位":
return 5
default:
return 0
}

8
api/version1/personnelapi/kingdeenew.go

@ -27,7 +27,9 @@ func (s *StaffApi) NewKingdee(c *gin.Context) {
requesJson, _ := json.Marshal(requestData)
saveKingDee.Cont = string(requesJson)
saveKingDee.Time = time.Now().Unix()
overall.CONSTANT_DB_HR.Create(&saveKingDee)
overallhandle.WriteLog("i", "KingDee对接数据!", saveKingDee)
kingdeeErr := overall.CONSTANT_DB_HR.Create(&saveKingDee).Error
overallhandle.WriteLog("w", "KingDee写入数据库状态!", kingdeeErr)
var manContent models.PersonArchives
manErr := manContent.GetCont(map[string]interface{}{"`number`": requestData.Number})
if manErr == nil {
@ -74,7 +76,7 @@ func eidtAddManContJinDie(perArcInfo models.PersonArchives, manCont addKingdeePe
// if empTypeErr != nil {
// empType = 1
// }
empType := emptypeToInt(manCont.EmpType)
empType := EmptypeToInt(manCont.EmpType)
// fmt.Printf("manCont.EmpType------------1-------->%v\n", empType)
if empType != perArcInfo.EmpType {
eidtManCont["`emp_type`"] = empType
@ -283,7 +285,7 @@ func newAddManContJinDie(oldSchool models.WorkMan, manCont addKingdeePersonneles
// empType = 1
// }
// manMainCont.EmpType = empType
manMainCont.EmpType = emptypeToInt(manCont.EmpType)
manMainCont.EmpType = EmptypeToInt(manCont.EmpType)
manMainCont.EmpTypeName = manCont.EmpType
timeTady := time.Now().Unix()

96
api/version1/personnelapi/staffarchives.go

@ -21,8 +21,9 @@ func (s *StaffApi) ArchivesList(c *gin.Context) {
if requestData.PageSize < 0 {
requestData.PageSize = 10
}
var staffList []models.ManCont
gormDb := overall.CONSTANT_DB_HR.Model(&models.ManCont{}).Where("state = 1")
// var staffList []models.ManCont
// var staffList []models.PersonArchives
gormDb := overall.CONSTANT_DB_HR.Model(&models.PersonArchives{}).Select("`id`").Where("state = 1")
if requestData.Number != "" {
gormDb = gormDb.Where("number LIKE ?", "%"+requestData.Number+"%")
@ -51,7 +52,7 @@ func (s *StaffApi) ArchivesList(c *gin.Context) {
if requestData.EmpType != 0 {
gormDb = gormDb.Where("emp_type = ?", requestData.EmpType)
} else {
gormDb = gormDb.Where("emp_type IN ?", overall.EmployeeStatusIng)
gormDb = gormDb.Where("emp_type BETWEEN ? AND ?", 1, 10)
}
if requestData.Role != "" {
gormDb = gormDb.Where("FIND_IN_SET(?,`role`)", requestData.Role)
@ -62,10 +63,15 @@ func (s *StaffApi) ArchivesList(c *gin.Context) {
if totalErr != nil {
total = 0
}
errGorm := gormDb.Order("company ASC,maindeparment ASC,admin_org ASC,position ASC").Limit(requestData.PageSize).Offset(overallhandle.LimitPage(requestData.Page, requestData.PageSize)).Find(&staffList).Error
var idAry []int64
// errGorm := gormDb.Order("company ASC,maindeparment ASC,admin_org ASC,position ASC").Limit(requestData.PageSize).Offset(overallhandle.LimitPage(requestData.Page, requestData.PageSize)).Find(&staffList).Error
errGorm := gormDb.Order("company ASC,maindeparment ASC,admin_org ASC,position ASC").Limit(requestData.PageSize).Limit(requestData.PageSize).Offset(overallhandle.LimitPage(requestData.Page, requestData.PageSize)).Find(&idAry).Error
var positionAry []peopleManOutList
for _, v := range staffList {
var manContList []models.ManCont
errGorm = overall.CONSTANT_DB_HR.Where("`id` IN ?", idAry).Find(&manContList).Error
for _, v := range manContList {
var staffInfo peopleManOutList
staffInfo.ManCont = v
var getSpur models.Position
@ -75,21 +81,27 @@ func (s *StaffApi) ArchivesList(c *gin.Context) {
staffInfo.PositionName = getSpur.Name
staffInfo.KeyStr = strconv.FormatInt(v.Key, 10)
//公司
var getSpurDepart models.AdministrativeOrganization
getWheDepart := overallhandle.MapOut()
getWheDepart["id"] = v.Company
getSpurDepart.GetCont(getWheDepart, "name")
staffInfo.CompanyName = getSpurDepart.Name
if v.Company != 0 {
var getSpurDepart models.AdministrativeOrganization
getWheDepart := overallhandle.MapOut()
getWheDepart["id"] = v.Company
getSpurDepart.GetCont(getWheDepart, "name")
staffInfo.CompanyName = getSpurDepart.Name
}
//主部门
var getSpurDepartMain models.AdministrativeOrganization
getWheDepartMain := overallhandle.MapOut()
getWheDepartMain["id"] = v.MainDeparment
getSpurDepartMain.GetCont(getWheDepartMain, "name")
staffInfo.MainDeparmentName = getSpurDepartMain.Name
if v.MainDeparment != 0 {
var getSpurDepartMain models.AdministrativeOrganization
getWheDepartMain := overallhandle.MapOut()
getWheDepartMain["id"] = v.MainDeparment
getSpurDepartMain.GetCont(getWheDepartMain, "name")
staffInfo.MainDeparmentName = getSpurDepartMain.Name
}
//二级著部门
var sunMainDepart models.AdministrativeOrganization
sunMainDepart.GetCont(map[string]interface{}{"`id`": v.SunMainDeparment}, "`name`")
staffInfo.SunMainDeparmentName = sunMainDepart.Name
if v.SunMainDeparment != 0 {
var sunMainDepart models.AdministrativeOrganization
sunMainDepart.GetCont(map[string]interface{}{"`id`": v.SunMainDeparment}, "`name`")
staffInfo.SunMainDeparmentName = sunMainDepart.Name
}
//获取部门
// departmentAry := strings.Split(v.Deparment, ",")
// if len(departmentAry) > 0 {
@ -151,25 +163,37 @@ func (s *StaffApi) ArchivesCon(c *gin.Context) {
staffCenter.IdCardEndTimeData = overallhandle.UnixTimeToDay(satffCont.Idcardenddate, 14) //身份证有效期结束时间
staffCenter.EntrydateTime = overallhandle.UnixTimeToDay(satffCont.Entrydate, 14) //入职日期
staffCenter.PlanformaldateTime = overallhandle.UnixTimeToDay(satffCont.Planformaldate, 14) //预计转正日期
if satffCont.Company != 0 {
var groupInfos models.AdministrativeOrganization
groupInfos.GetCont(map[string]interface{}{"`id`": satffCont.Company}, "`name`")
staffCenter.CompanyName = groupInfos.Name
}
if satffCont.MainDeparment != 0 {
var demperMainInfos models.AdministrativeOrganization
demperMainInfos.GetCont(map[string]interface{}{"`id`": satffCont.MainDeparment}, "`name`")
staffCenter.MainDeparmentName = demperMainInfos.Name
}
if satffCont.AdminOrg != 0 {
var adminOrg models.AdministrativeOrganization
adminOrg.GetCont(map[string]interface{}{"`id`": satffCont.AdminOrg}, "`name`")
staffCenter.AdminOrgName = adminOrg.Name
}
if satffCont.Position != 0 {
var postisInfo models.Position
postisInfo.GetCont(map[string]interface{}{"`id`": satffCont.Position}, "`name`")
staffCenter.PositionName = postisInfo.Name
}
if satffCont.JobClass != 0 {
var jobsInfo models.JobClass
jobsInfo.GetCont(map[string]interface{}{"`id`": satffCont.JobClass}, "`name`")
staffCenter.JobClassName = jobsInfo.Name
}
if satffCont.JobId != 0 {
var dutiresInfo models.Duties
dutiresInfo.GetCont(map[string]interface{}{"`id`": satffCont.JobId}, "`name`")
staffCenter.JobIdName = dutiresInfo.Name
}
var groupInfos models.AdministrativeOrganization
groupInfos.GetCont(map[string]interface{}{"`id`": satffCont.Company}, "`name`")
staffCenter.CompanyName = groupInfos.Name
var demperMainInfos models.AdministrativeOrganization
demperMainInfos.GetCont(map[string]interface{}{"`id`": satffCont.MainDeparment}, "`name`")
staffCenter.MainDeparmentName = demperMainInfos.Name
var adminOrg models.AdministrativeOrganization
adminOrg.GetCont(map[string]interface{}{"`id`": satffCont.AdminOrg}, "`name`")
staffCenter.AdminOrgName = adminOrg.Name
var postisInfo models.Position
postisInfo.GetCont(map[string]interface{}{"`id`": satffCont.Position}, "`name`")
staffCenter.PositionName = postisInfo.Name
var jobsInfo models.JobClass
jobsInfo.GetCont(map[string]interface{}{"`id`": satffCont.JobClass}, "`name`")
staffCenter.JobClassName = jobsInfo.Name
var dutiresInfo models.Duties
dutiresInfo.GetCont(map[string]interface{}{"`id`": satffCont.JobId}, "`name`")
staffCenter.JobIdName = dutiresInfo.Name
staffCenter.PoliticalOutlookName = overallhandle.PolitiToString(satffCont.PoliticalOutlook)
//获取双职工信息
synPro.Add(1)

1
api/version1/personnelapi/type.go

@ -52,6 +52,7 @@ type peopleOutList struct {
}
type peopleManOutList struct {
models.ManCont
// models.PersonArchives
CompanyName string `json:"companyname"` //公司名称
MainDeparmentName string `json:"maindeparmentname"` //主部门
SunMainDeparmentName string `json:"sunmaindeparmentname"` //二级主部门

16
api/version1/shiyan/shiyan.go

@ -2,6 +2,7 @@ package shiyan
import (
"fmt"
"hr_server/api/version1/personnelapi"
"hr_server/middleware/snowflake"
"hr_server/models"
"hr_server/overall"
@ -303,3 +304,18 @@ func (s *ShiYan) Shitu(c *gin.Context) {
overallhandle.Result(0, out, c)
}
//人员状态数据对正
func (s *ShiYan) PeopleStatus(c *gin.Context) {
var manList []models.PersonArchives
err := overall.CONSTANT_DB_HR.Model(&manList).Select("`id`,`emp_type_name`").Find(&manList).Error
if err != nil {
return
}
for _, v := range manList {
stateInt := personnelapi.EmptypeToInt(v.EmpTypeName)
var eidtMan models.PersonArchives
eidtMan.EiteCont(map[string]interface{}{"id": v.Id}, map[string]interface{}{"emp_type": stateInt})
}
overallhandle.Result(0, err, c)
}

1
apirouter/empowerrote/empowerroter.go

@ -9,7 +9,6 @@ import (
//授权
func (p *EmpowerApiRouter) InitRouterGroup(route *gin.RouterGroup) {
apiRouter := route.Group("empower")
var apiHandle = empower.AppApiInlet.Authorize
{
apiRouter.GET("", apiHandle.Index) //入口

1
apirouter/shiyanrouter/shiyan.go

@ -16,5 +16,6 @@ func (p *ShiyanApiRouter) InitRouterGroup(route *gin.RouterGroup) {
apiRouter.POST("shiyan", apiHandle.ShiyanCont) //人员列表
apiRouter.POST("personnelmigration", apiHandle.PersonnelMigration) //人员迁移
apiRouter.POST("shitu", apiHandle.Shitu)
apiRouter.POST("peoplestatus", apiHandle.PeopleStatus) //人员状态数据对正
}
}

BIN
hr_server.exe

Binary file not shown.

12
log/202207/20220703.log

File diff suppressed because one or more lines are too long

15
log/202207/20220704.log

File diff suppressed because one or more lines are too long

9
log/202207/20220705.log

File diff suppressed because one or more lines are too long

14
log/202207/20220706.log

File diff suppressed because one or more lines are too long

17
log/202207/20220707.log

File diff suppressed because one or more lines are too long

15
log/202207/20220708.log

File diff suppressed because one or more lines are too long

15
log/202207/20220709.log

File diff suppressed because one or more lines are too long

17
log/202207/20220710.log

File diff suppressed because one or more lines are too long

15
log/202207/20220711.log

File diff suppressed because one or more lines are too long

6
log/202207/20220712.log

File diff suppressed because one or more lines are too long

16
log/202207/20220713.log

@ -0,0 +1,16 @@
[Trace] 2022/07/13 22:30:00 [开始执行行政组织类型对照]
[Error] 2022/07/13 22:30:02 [访问请求[http://36.134.44.40:18888/person/adminUnitType] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/13 22:30:02 [未能获取到行政组织类型! Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/13 22:30:02 [结束执行行政组织类型对照]
[Trace] 2022/07/13 22:30:02 [开始执行职务类型对照]
[Error] 2022/07/13 22:30:04 [访问请求[http://36.134.44.40:18888/person/ptype] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/13 22:30:04 [未能获取到职务类型! Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/13 22:30:04 [结束执行职务类型对照]
[Trace] 2022/07/13 23:10:00 [开始执行职务对照]
[Error] 2022/07/13 23:10:02 [访问请求[http://36.134.44.40:18888/person/job] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/13 23:10:02 [未能获取到职务! Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/13 23:10:02 [结束执行职务对照]
[Trace] 2022/07/13 23:10:02 [开始执行行政组织对照]
[Error] 2022/07/13 23:10:04 [访问请求[http://36.134.44.40:18888/person/adminunit] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/13 23:10:04 [未能获取到行政组织! Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/13 23:10:04 [结束执行行政组织对照]

16
log/202207/20220714.log

@ -0,0 +1,16 @@
[Trace] 2022/07/14 22:30:00 [开始执行行政组织类型对照]
[Error] 2022/07/14 22:30:02 [访问请求[http://36.134.44.40:18888/person/adminUnitType] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/14 22:30:02 [未能获取到行政组织类型! Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/14 22:30:02 [结束执行行政组织类型对照]
[Trace] 2022/07/14 22:30:02 [开始执行职务类型对照]
[Error] 2022/07/14 22:30:04 [访问请求[http://36.134.44.40:18888/person/ptype] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/14 22:30:04 [未能获取到职务类型! Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/14 22:30:04 [结束执行职务类型对照]
[Trace] 2022/07/14 23:10:00 [开始执行职务对照]
[Error] 2022/07/14 23:10:02 [访问请求[http://36.134.44.40:18888/person/job] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/14 23:10:02 [未能获取到职务! Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/14 23:10:02 [结束执行职务对照]
[Trace] 2022/07/14 23:10:02 [开始执行行政组织对照]
[Error] 2022/07/14 23:10:04 [访问请求[http://36.134.44.40:18888/person/adminunit] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/14 23:10:04 [未能获取到行政组织! Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/14 23:10:04 [结束执行行政组织对照]

20
log/202207/20220715.log

@ -0,0 +1,20 @@
[Trace] 2022/07/15 00:15:00 [开始执行职位对照]
[Error] 2022/07/15 00:15:02 [访问请求[http://36.134.44.40:18888/person/position] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/15 00:15:02 [未能获取到职位! Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/15 00:15:02 [结束执行职位对照]
[Trace] 2022/07/15 22:30:00 [开始执行行政组织类型对照]
[Error] 2022/07/15 22:30:02 [访问请求[http://36.134.44.40:18888/person/adminUnitType] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/15 22:30:02 [未能获取到行政组织类型! Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/15 22:30:02 [结束执行行政组织类型对照]
[Trace] 2022/07/15 22:30:02 [开始执行职务类型对照]
[Error] 2022/07/15 22:30:04 [访问请求[http://36.134.44.40:18888/person/ptype] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/15 22:30:04 [未能获取到职务类型! Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/15 22:30:04 [结束执行职务类型对照]
[Trace] 2022/07/15 23:10:00 [开始执行职务对照]
[Error] 2022/07/15 23:10:02 [访问请求[http://36.134.44.40:18888/person/job] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/15 23:10:02 [未能获取到职务! Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/15 23:10:02 [结束执行职务对照]
[Trace] 2022/07/15 23:10:02 [开始执行行政组织对照]
[Error] 2022/07/15 23:10:04 [访问请求[http://36.134.44.40:18888/person/adminunit] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/15 23:10:04 [未能获取到行政组织! Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/15 23:10:04 [结束执行行政组织对照]

20
log/202207/20220716.log

@ -0,0 +1,20 @@
[Trace] 2022/07/16 00:15:00 [开始执行职位对照]
[Error] 2022/07/16 00:15:02 [访问请求[http://36.134.44.40:18888/person/position] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/16 00:15:02 [未能获取到职位! Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/16 00:15:02 [结束执行职位对照]
[Trace] 2022/07/16 22:30:00 [开始执行行政组织类型对照]
[Error] 2022/07/16 22:30:02 [访问请求[http://36.134.44.40:18888/person/adminUnitType] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/16 22:30:02 [未能获取到行政组织类型! Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/16 22:30:02 [结束执行行政组织类型对照]
[Trace] 2022/07/16 22:30:02 [开始执行职务类型对照]
[Error] 2022/07/16 22:30:04 [访问请求[http://36.134.44.40:18888/person/ptype] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/16 22:30:04 [未能获取到职务类型! Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/16 22:30:04 [结束执行职务类型对照]
[Trace] 2022/07/16 23:10:00 [开始执行职务对照]
[Error] 2022/07/16 23:10:02 [访问请求[http://36.134.44.40:18888/person/job] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/16 23:10:02 [未能获取到职务! Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/16 23:10:02 [结束执行职务对照]
[Trace] 2022/07/16 23:10:02 [开始执行行政组织对照]
[Error] 2022/07/16 23:10:04 [访问请求[http://36.134.44.40:18888/person/adminunit] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/16 23:10:04 [未能获取到行政组织! Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/16 23:10:04 [结束执行行政组织对照]

20
log/202207/20220717.log

@ -0,0 +1,20 @@
[Trace] 2022/07/17 00:15:00 [开始执行职位对照]
[Error] 2022/07/17 00:15:02 [访问请求[http://36.134.44.40:18888/person/position] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/17 00:15:02 [未能获取到职位! Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/17 00:15:02 [结束执行职位对照]
[Trace] 2022/07/17 22:30:00 [开始执行行政组织类型对照]
[Error] 2022/07/17 22:30:02 [访问请求[http://36.134.44.40:18888/person/adminUnitType] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/17 22:30:02 [未能获取到行政组织类型! Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/17 22:30:02 [结束执行行政组织类型对照]
[Trace] 2022/07/17 22:30:02 [开始执行职务类型对照]
[Error] 2022/07/17 22:30:04 [访问请求[http://36.134.44.40:18888/person/ptype] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/17 22:30:04 [未能获取到职务类型! Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/17 22:30:04 [结束执行职务类型对照]
[Trace] 2022/07/17 23:10:00 [开始执行职务对照]
[Error] 2022/07/17 23:10:02 [访问请求[http://36.134.44.40:18888/person/job] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/17 23:10:02 [未能获取到职务! Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/17 23:10:02 [结束执行职务对照]
[Trace] 2022/07/17 23:10:02 [开始执行行政组织对照]
[Error] 2022/07/17 23:10:04 [访问请求[http://36.134.44.40:18888/person/adminunit] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/17 23:10:04 [未能获取到行政组织! Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/17 23:10:04 [结束执行行政组织对照]

20
log/202207/20220718.log

@ -0,0 +1,20 @@
[Trace] 2022/07/18 00:15:00 [开始执行职位对照]
[Error] 2022/07/18 00:15:02 [访问请求[http://36.134.44.40:18888/person/position] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/18 00:15:02 [未能获取到职位! Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/18 00:15:02 [结束执行职位对照]
[Trace] 2022/07/18 22:30:00 [开始执行行政组织类型对照]
[Error] 2022/07/18 22:30:02 [访问请求[http://36.134.44.40:18888/person/adminUnitType] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/18 22:30:02 [未能获取到行政组织类型! Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/18 22:30:02 [结束执行行政组织类型对照]
[Trace] 2022/07/18 22:30:02 [开始执行职务类型对照]
[Error] 2022/07/18 22:30:04 [访问请求[http://36.134.44.40:18888/person/ptype] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/18 22:30:04 [未能获取到职务类型! Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/18 22:30:04 [结束执行职务类型对照]
[Trace] 2022/07/18 23:10:00 [开始执行职务对照]
[Error] 2022/07/18 23:10:02 [访问请求[http://36.134.44.40:18888/person/job] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/18 23:10:02 [未能获取到职务! Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/18 23:10:02 [结束执行职务对照]
[Trace] 2022/07/18 23:10:02 [开始执行行政组织对照]
[Error] 2022/07/18 23:10:04 [访问请求[http://36.134.44.40:18888/person/adminunit] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/18 23:10:04 [未能获取到行政组织! Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/18 23:10:04 [结束执行行政组织对照]

4
log/202207/20220719.log

@ -0,0 +1,4 @@
[Trace] 2022/07/19 00:15:00 [开始执行职位对照]
[Error] 2022/07/19 00:15:02 [访问请求[http://36.134.44.40:18888/person/position] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/19 00:15:02 [未能获取到职位! Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/19 00:15:02 [结束执行职位对照]

16
log/202207/20220720.log

@ -0,0 +1,16 @@
[Trace] 2022/07/20 22:30:00 [开始执行行政组织类型对照]
[Error] 2022/07/20 22:30:02 [访问请求[http://36.134.44.40:18888/person/adminUnitType] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/20 22:30:02 [未能获取到行政组织类型! Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/20 22:30:02 [结束执行行政组织类型对照]
[Trace] 2022/07/20 22:30:02 [开始执行职务类型对照]
[Error] 2022/07/20 22:30:04 [访问请求[http://36.134.44.40:18888/person/ptype] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/20 22:30:04 [未能获取到职务类型! Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/20 22:30:04 [结束执行职务类型对照]
[Trace] 2022/07/20 23:10:00 [开始执行职务对照]
[Error] 2022/07/20 23:10:02 [访问请求[http://36.134.44.40:18888/person/job] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/20 23:10:02 [未能获取到职务! Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/20 23:10:02 [结束执行职务对照]
[Trace] 2022/07/20 23:10:02 [开始执行行政组织对照]
[Error] 2022/07/20 23:10:04 [访问请求[http://36.134.44.40:18888/person/adminunit] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/20 23:10:04 [未能获取到行政组织! Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/20 23:10:04 [结束执行行政组织对照]

20
log/202207/20220721.log

@ -0,0 +1,20 @@
[Trace] 2022/07/21 00:15:00 [开始执行职位对照]
[Error] 2022/07/21 00:15:02 [访问请求[http://36.134.44.40:18888/person/position] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/21 00:15:02 [未能获取到职位! Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/21 00:15:02 [结束执行职位对照]
[Trace] 2022/07/21 22:30:00 [开始执行行政组织类型对照]
[Error] 2022/07/21 22:30:02 [访问请求[http://36.134.44.40:18888/person/adminUnitType] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/21 22:30:02 [未能获取到行政组织类型! Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/21 22:30:02 [结束执行行政组织类型对照]
[Trace] 2022/07/21 22:30:02 [开始执行职务类型对照]
[Error] 2022/07/21 22:30:04 [访问请求[http://36.134.44.40:18888/person/ptype] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/21 22:30:04 [未能获取到职务类型! Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/21 22:30:04 [结束执行职务类型对照]
[Trace] 2022/07/21 23:10:00 [开始执行职务对照]
[Error] 2022/07/21 23:10:02 [访问请求[http://36.134.44.40:18888/person/job] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/21 23:10:02 [未能获取到职务! Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/21 23:10:02 [结束执行职务对照]
[Trace] 2022/07/21 23:10:02 [开始执行行政组织对照]
[Error] 2022/07/21 23:10:04 [访问请求[http://36.134.44.40:18888/person/adminunit] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/21 23:10:04 [未能获取到行政组织! Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/21 23:10:04 [结束执行行政组织对照]

20
log/202207/20220722.log

@ -0,0 +1,20 @@
[Trace] 2022/07/22 00:15:00 [开始执行职位对照]
[Error] 2022/07/22 00:15:02 [访问请求[http://36.134.44.40:18888/person/position] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/22 00:15:02 [未能获取到职位! Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/22 00:15:02 [结束执行职位对照]
[Trace] 2022/07/22 22:30:00 [开始执行行政组织类型对照]
[Error] 2022/07/22 22:30:02 [访问请求[http://36.134.44.40:18888/person/adminUnitType] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/22 22:30:02 [未能获取到行政组织类型! Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/22 22:30:02 [结束执行行政组织类型对照]
[Trace] 2022/07/22 22:30:02 [开始执行职务类型对照]
[Error] 2022/07/22 22:30:04 [访问请求[http://36.134.44.40:18888/person/ptype] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/22 22:30:04 [未能获取到职务类型! Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/22 22:30:04 [结束执行职务类型对照]
[Trace] 2022/07/22 23:10:00 [开始执行职务对照]
[Error] 2022/07/22 23:10:02 [访问请求[http://36.134.44.40:18888/person/job] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/22 23:10:02 [未能获取到职务! Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/22 23:10:02 [结束执行职务对照]
[Trace] 2022/07/22 23:10:02 [开始执行行政组织对照]
[Error] 2022/07/22 23:10:04 [访问请求[http://36.134.44.40:18888/person/adminunit] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/22 23:10:04 [未能获取到行政组织! Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/22 23:10:04 [结束执行行政组织对照]

4
log/202207/20220723.log

@ -0,0 +1,4 @@
[Trace] 2022/07/23 00:15:00 [开始执行职位对照]
[Error] 2022/07/23 00:15:02 [访问请求[http://36.134.44.40:18888/person/position] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/23 00:15:02 [未能获取到职位! Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/23 00:15:02 [结束执行职位对照]

16
log/202207/20220726.log

@ -0,0 +1,16 @@
[Trace] 2022/07/26 22:30:00 [开始执行行政组织类型对照]
[Error] 2022/07/26 22:30:02 [访问请求[http://36.134.44.40:18888/person/adminUnitType] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/26 22:30:02 [未能获取到行政组织类型! Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/26 22:30:02 [结束执行行政组织类型对照]
[Trace] 2022/07/26 22:30:02 [开始执行职务类型对照]
[Error] 2022/07/26 22:30:04 [访问请求[http://36.134.44.40:18888/person/ptype] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/26 22:30:04 [未能获取到职务类型! Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/26 22:30:04 [结束执行职务类型对照]
[Trace] 2022/07/26 23:10:00 [开始执行职务对照]
[Error] 2022/07/26 23:10:02 [访问请求[http://36.134.44.40:18888/person/job] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/26 23:10:02 [未能获取到职务! Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/26 23:10:02 [结束执行职务对照]
[Trace] 2022/07/26 23:10:02 [开始执行行政组织对照]
[Error] 2022/07/26 23:10:04 [访问请求[http://36.134.44.40:18888/person/adminunit] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/26 23:10:04 [未能获取到行政组织! Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/26 23:10:04 [结束执行行政组织对照]

20
log/202207/20220727.log

@ -0,0 +1,20 @@
[Trace] 2022/07/27 00:15:00 [开始执行职位对照]
[Error] 2022/07/27 00:15:02 [访问请求[http://36.134.44.40:18888/person/position] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/27 00:15:02 [未能获取到职位! Get "http://36.134.44.40:18888/person/position": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/27 00:15:02 [结束执行职位对照]
[Trace] 2022/07/27 22:30:00 [开始执行行政组织类型对照]
[Error] 2022/07/27 22:30:02 [访问请求[http://36.134.44.40:18888/person/adminUnitType] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/27 22:30:02 [未能获取到行政组织类型! Get "http://36.134.44.40:18888/person/adminUnitType": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/27 22:30:02 [结束执行行政组织类型对照]
[Trace] 2022/07/27 22:30:02 [开始执行职务类型对照]
[Error] 2022/07/27 22:30:04 [访问请求[http://36.134.44.40:18888/person/ptype] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/27 22:30:04 [未能获取到职务类型! Get "http://36.134.44.40:18888/person/ptype": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/27 22:30:04 [结束执行职务类型对照]
[Trace] 2022/07/27 23:10:00 [开始执行职务对照]
[Error] 2022/07/27 23:10:02 [访问请求[http://36.134.44.40:18888/person/job] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/27 23:10:02 [未能获取到职务! Get "http://36.134.44.40:18888/person/job": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/27 23:10:02 [结束执行职务对照]
[Trace] 2022/07/27 23:10:02 [开始执行行政组织对照]
[Error] 2022/07/27 23:10:04 [访问请求[http://36.134.44.40:18888/person/adminunit] http.DefaultClient.Do() err: Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Error] 2022/07/27 23:10:04 [未能获取到行政组织! Get "http://36.134.44.40:18888/person/adminunit": dial tcp 36.134.44.40:18888: connectex: No connection could be made because the target machine actively refused it.]
[Trace] 2022/07/27 23:10:04 [结束执行行政组织对照]

36
log/202207/20220728.log

File diff suppressed because one or more lines are too long

16
log/202207/20220729.log

File diff suppressed because one or more lines are too long

15
log/202207/20220730.log

File diff suppressed because one or more lines are too long

15
log/202207/20220731.log

File diff suppressed because one or more lines are too long

3
log/202208/20220801.log

File diff suppressed because one or more lines are too long

2
models/kingdee_log.go

@ -8,7 +8,7 @@ import (
//金蝶对照记录
type KingdeeLog struct {
Id int64 `json:"id" gorm:"primaryKey;column:id;type:bigint(20) unsigned;not null;comment:Id;index"`
Number string `json:"name" gorm:"column:name;type:varchar(255) unsigned;default:'';not null;comment:工号"`
Number string `json:"number" gorm:"column:number;type:varchar(255) unsigned;default:'';not null;comment:工号"`
Cont string `json:"cont" gorm:"column:cont;type:longtext unsigned;default:'';not null;comment:内容"`
Time int64 `json:"time" gorm:"column:time;type:bigint(20) unsigned;default:0;not null;comment:创建时间"`
}

1
models/man_cont.go

@ -17,6 +17,7 @@ type ManCont struct {
SunMainDeparment int64 `json:"sunmaindeparment" gorm:"column:sun_main_department;type:bigint(20) unsigned;default:0;not null;comment:二级主部门"`
Deparment string `json:"deparment" gorm:"column:deparment;type:text;comment:部门"`
AdminOrg int64 `json:"adminorg" gorm:"column:admin_org;type:bigint(20) unsigned;default:0;not null;comment:所属行政组织"`
TeamId int64 `json:"teamid" gorm:"column:teamid;type:bigint(20) unsigned;default:0;not null;comment:班组"`
Position int64 `json:"position" gorm:"column:position;type:bigint(20) unsigned;default:0;not null;comment:职位"`
JobClass int64 `json:"jobclass" gorm:"column:job_class;type:bigint(20) unsigned;default:2;not null;comment:职务分类"`
JobId int64 `json:"jobid" gorm:"column:job_id;type:bigint(20) unsigned;default:0;not null;comment:职务"`

2
models/personarchives.go

@ -12,7 +12,7 @@ type PersonArchives struct {
Name string `json:"name" gorm:"column:name;type:varchar(255) unsigned;default:'';not null;comment:姓名"`
Icon string `json:"icon" gorm:"column:icon;type:varchar(255) unsigned;default:'';not null;comment:头像"`
HireClass int `json:"hireclass" gorm:"column:hire_class;type:tinyint(1) unsigned;default:1;not null;comment:雇佣类型(1:雇佣入职;2:再入职;)"`
EmpType int `json:"emptype" gorm:"column:emp_type;type:tinyint(1) unsigned;default:1;not null;comment:用工关系(1:实习生;2:待分配;3:试用员工;4:正式员工;5:停薪留职;6:退休;7:辞退;8:离职)"`
EmpType int `json:"emptype" gorm:"column:emp_type;type:tinyint(1) unsigned;default:1;not null;comment:用工关系(1:临时工 , 2:编外人员 ;3:实习&实习生;4:试用员工;5:待分配;6:待岗;7:临时调入;8:正式员工;9:长期病假;10:停薪留职;11:退休;12:辞职;13:辞退;14:离职)"`
Company int64 `json:"company" gorm:"column:company;type:bigint(20) unsigned;default:0;not null;comment:入职公司"`
MainDeparment int64 `json:"maindeparment" gorm:"column:maindeparment;type:bigint(20) unsigned;default:0;not null;comment:主部门"`
Deparment string `json:"deparment" gorm:"column:deparment;type:text;comment:部门"`

4
overall/app_constant.go

@ -5,7 +5,7 @@ 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:离职)
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"
)

BIN
overall/overallhandle/__debug_bin.exe

Binary file not shown.
Loading…
Cancel
Save