comapny.go 376 字节
package models

import "time"

type Company struct {
	tableName struct{}   `pg:"company"`
	Id        int64      `pg:"pk:id"` //公司id
	Logo      string     //公司logo
	Name      string     //公司名称
	Status    int        //公司状态,1正常 2禁用
	UpdateAt  time.Time  //更新时间
	CreateAt  time.Time  //创建时间
	DeleteAt  *time.Time //删除时间
}