package viewmodels type ApiTransUnitInfo struct { ApiId int64 `json:"apiId" xorm:"'api_id' bigint pk comment('ApiId') "` AtuId int64 `json:"atuId" xorm:"'atu_id' bigint pk comment('AtuId') "` ModelId int64 `json:"modelId" xorm:"'model_id' bigint comment('ModelId') "` ModelTitle string `json:"modelTitle" xorm:"'model_title' varchar(127) comment('Model Title') "` ObjectId int64 `json:"objectId" xorm:"'object_id' bigint comment('ObjectId') "` ObjectTitle string `json:"objectTitle" xorm:"'object_title' varchar(127) comment('Object Title') "` ObjectCode string `json:"objectCode" xorm:"'object_code' varchar(127) comment('Object Code') "` ObjectOamType int64 `json:"objectOamType" xorm:"'object_oam_type' bigint comment('ObjectOamType')"` } func (t *ApiTransUnitInfo) TableName() string { return "ps_api_trans_unit" }