1、初始化项目

This commit is contained in:
2025-05-12 14:49:01 +08:00
commit 20a741ae11
242 changed files with 29323 additions and 0 deletions

View File

@ -0,0 +1,16 @@
package models
type SysPost struct {
PostId int `gorm:"primaryKey;autoIncrement" json:"postId"` //岗位编号
PostName string `gorm:"size:128;" json:"postName"` //岗位名称
PostCode string `gorm:"size:128;" json:"postCode"` //岗位代码
Sort int `gorm:"size:4;" json:"sort"` //岗位排序
Status int `gorm:"size:4;" json:"status"` //状态
Remark string `gorm:"size:255;" json:"remark"` //描述
ControlBy
ModelTime
}
func (SysPost) TableName() string {
return "sys_post"
}