更换为null_time,null_int

This commit is contained in:
xiangheng
2024-08-16 01:03:54 +08:00
parent 1fc96a59b0
commit edd6d9df0e
94 changed files with 2893 additions and 1126 deletions

View File

@@ -40,12 +40,12 @@ type SystemAuthPostDelReq struct {
//SystemAuthPostResp 系统岗位返回信息
type SystemAuthPostResp struct {
ID uint `json:"id" structs:"id"` // 主键
Code string `json:"code" structs:"code"` // 岗位编号
Name string `json:"name" structs:"name"` // 岗位名称
Remarks string `json:"remarks" structs:"remarks"` // 岗位备注
Sort uint16 `json:"sort" structs:"sort"` // 岗位排序
IsStop uint8 `json:"isStop" structs:"isStop"` // 是否停用: [0=否, 1=是]
CreateTime core.TsTime `json:"createTime" structs:"createTime"` // 创建时间
UpdateTime core.TsTime `json:"updateTime" structs:"updateTime"` // 更新时间
ID uint `json:"id" structs:"id"` // 主键
Code string `json:"code" structs:"code"` // 岗位编号
Name string `json:"name" structs:"name"` // 岗位名称
Remarks string `json:"remarks" structs:"remarks"` // 岗位备注
Sort uint16 `json:"sort" structs:"sort"` // 岗位排序
IsStop uint8 `json:"isStop" structs:"isStop"` // 是否停用: [0=否, 1=是]
CreateTime core.NullTime `json:"createTime" structs:"createTime"` // 创建时间
UpdateTime core.NullTime `json:"updateTime" structs:"updateTime"` // 更新时间
}