comapny.go
488 字节
package models
import "time"
type Company struct {
tableName struct{} `pg:"company"`
Id int64 `pg:"pk:id"` //公司id
Logo string //公司logo
Name string //公司名称
ChargeUserIds []int64 //公司级别的部门主管uids
Status int //公司状态,1正常 2禁用
CreatedAt time.Time //创建时间
UpdatedAt time.Time //更新时间
DeletedAt *time.Time `pg:",soft_delete"` //删除时间
}