调整任务列表接口记录

This commit is contained in:
2025-07-08 17:53:28 +08:00
parent 2979a2f778
commit afa6b8bcd1
31 changed files with 269 additions and 632 deletions

View File

@ -28,4 +28,5 @@ type Users struct {
DeletedAt *gtime.Time // 软删除时间
RoleId interface{} // 角色ID
LastLoginStoreId interface{} // 上次登录门店ID
XyUserId interface{} //
}

View File

@ -26,4 +26,5 @@ type Users struct {
DeletedAt *gtime.Time `json:"deletedAt" orm:"deleted_at" description:"软删除时间"` // 软删除时间
RoleId int64 `json:"roleId" orm:"role_id" description:"角色ID"` // 角色ID
LastLoginStoreId int64 `json:"lastLoginStoreId" orm:"last_login_store_id" description:"上次登录门店ID"` // 上次登录门店ID
XyUserId string `json:"xyUserId" orm:"xy_user_id" description:""` //
}