2023-01-18 16:00:50 +08:00
|
|
|
package dataobject
|
2022-03-01 13:50:13 +08:00
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
// SysPost 岗位表对应结构体
|
|
|
|
type SysPost struct {
|
|
|
|
PostId int64 `excel:"name=岗位编号" xorm:"pk autoincr" json:"postId"` // 岗位ID
|
|
|
|
PostCode string `excel:"name=岗位编码" xorm:"varchar(64)" json:"postCode"` // 岗位编码
|
|
|
|
PostName string `excel:"name=岗位名称" xorm:"varchar(64)" json:"postName"` // 岗位名称
|
|
|
|
PostSort int `excel:"name=岗位排序" json:"postSort"` // 显示顺序
|
|
|
|
Status string `excel:"name=状态,format=0=正常,1=停用" xorm:"char(1)" json:"status"` // 状态 0正常 1停用
|
|
|
|
Remark string `xorm:"varchar(512)" json:"remark"` // 备注
|
|
|
|
CreateTime time.Time `xorm:"created" json:"createTime"` // 创建时间
|
|
|
|
CreateBy string `json:"createBy"` // 创建人
|
2023-01-18 15:03:52 +08:00
|
|
|
UpdateTime time.Time `xorm:"updated" json:"updateTime"` // 更新时间
|
2022-03-01 13:50:13 +08:00
|
|
|
UpdateBy string `json:"updateBy"` // 更新人
|
|
|
|
}
|
|
|
|
|
|
|
|
func (SysPost) TableName() string {
|
|
|
|
return "sys_post"
|
|
|
|
}
|