| 12345678910111213141516171819202122232425262728 |
- package viewmodels
- type ApiTransUnitInfo struct {
- ModuleId int64 `json:"moduleId" xorm:"'module_id' bigint pk comment('主键ID') "`
- 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') "`
- OamId int64 `json:"oamId" xorm:"'oam_id' bigint comment('oamId') "`
- OamTitle string `json:"oamTitle" xorm:"'oam_title' varchar(127) comment('OAMTitle') "`
- OamCode string `json:"oamCode" xorm:"'oam_code' varchar(127) comment('OAMCode') "`
- OamType int64 `json:"oamType" xorm:"'oam_type' bigint comment('Oam Type') "`
- SqlType int64 `json:"sqlType" xorm:"'sql_type' bigint comment('Sql Type') "`
- SqlStatement string `json:"sqlStatement" xorm:"'sql_statement' varchar(1023) comment('Statement') "`
- SqlSelect string `json:"sqlSelect" xorm:"'sql_select' varchar(1023) comment('Statement') "`
- SqlFrom string `json:"sqlFrom" xorm:"'sql_from' varchar(1023) comment('Statement') "`
- SqlWhere string `json:"sqlWhere" xorm:"'sql_where' varchar(1023) comment('Statement') "`
- SqlOrder string `json:"sqlOrder" xorm:"'sql_order' varchar(1023) comment('Statement') "`
- OamDesc string `json:"oamDesc" xorm:"'oam_desc' varchar(1023) comment('描述') "`
- }
- func (t *ApiTransUnitInfo) TableName() string {
- return "ps_api_trans_unit"
- }
|