pg_company.go 669 字节
package models

import (
	"gitlab.fjmaimaimai.com/mmm-go/partner/pkg/domain"
	"time"
)

// 公司信息
type Company struct {
	tableName struct{} `pg:"company"`
	//	唯一标识
	Id int64
	//	名称
	Name string
	// 公司简称
	Abbreviation string
	//	手机号码
	Phone string
	//	公司logo
	Logo string
	//	备注
	Remarks string
	//	总后台的公司id
	AdminCompanyId int
	//	状态 1正常 2禁用
	Status int8
	//	创建时间
	CreateAt time.Time
	//	更新时间
	UpdateAt time.Time
	//	删除时间
	DeleteAt time.Time
	// 是否开启合伙人模块,是否有效【1:有效】【2:无效】
	Enable int8
	// 小程序
	Applets []domain.CompanyApplets
}