pg_company.go
439 字节
package models
import "time"
// 公司信息
type Company struct {
tableName struct{} `pg:"company"`
// 唯一标识
Id int64
// 名称
Name string
// 手机号码
Phone string
// 公司logo
Logo string
// 备注
Remarks string
// 总后台的公司id
AdminCompanyId int
// 状态 1正常 2禁用
Status int8
// 创建时间
CreateAt time.Time
// 更新时间
UpdateAt time.Time
// 删除时间
DeleteAt time.Time
}