cooperation_mode.go 1.2 KB
package models

import (
	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation/pkg/domain"
	"time"
)

type CooperationMode struct {
	tableName string `comment:"共创模式实体" pg:"cooperation_modes,alias:cooperation_mode"`
	// 共创模式ID
	CooperationModeId int64 `comment:"共创模式ID" pg:",pk:cooperation_mode_id"`
	// 共创模式编码,唯一确定
	CooperationModeNumber string `comment:"共创模式编码,唯一确定"`
	// 模式名称,唯一确定
	CooperationModeName string `comment:"模式名称,唯一确定"`
	// 共创模式状态,1启用,2禁用
	Status int32 `comment:"共创模式状态,1启用,2禁用"`
	// 数据所属组织机构
	Org *domain.Org `comment:"数据所属组织机构"`
	// 公司
	Company *domain.Company `comment:"公司"`
	// 备注
	Remarks string `comment:"备注"`
	// 操作人
	Operator *domain.User `comment:"操作人"`
	// 操作时间
	OperateTime time.Time `comment:"操作时间"`
	// 更新时间
	UpdatedAt time.Time `comment:"更新时间"`
	// 删除时间
	DeletedAt time.Time `comment:"删除时间" pg:",soft_delete"`
	// 创建时间
	CreatedAt time.Time `comment:"创建时间"`
}