| 12345678910111213141516171819202122232425 |
- package datamodels
- import "time"
- type ApiTransUnit 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:"modelIdId" xorm:"'model_id' bigint pk comment('ModelId') "`
- ObjectId int64 `json:"objectId" xorm:"'object_id' bigint pk comment('ObjectId') "`
- OamId int64 `json:"oamId" xorm:"'oam_id' bigint pk comment('OamId') "`
- AtuTitle string `json:"atuTitle" xorm:"'atu_title' varchar(127) comment('AtuTitle') "`
- AtuType string `json:"atuType" xorm:"'atu_type' bigint comment('AtuType') "`
- AtuDesc string `json:"atuDesc" xorm:"'atu_desc' varchar(2047) comment('AtuDesc') "`
- CreatedBy int64 `json:"createdBy" xorm:"'created_by'"`
- CreatedAt time.Time `json:"createdAt" xorm:"'created_at'"`
- UpdatedBy int64 `json:"updatedBy" xorm:"'updated_by'"`
- UpdatedAt time.Time `json:"updatedAt" xorm:"'updated_at'"`
- DeletedFlag int64 `json:"deletedFlag" xorm:"'deleted_flag'"`
- DeletedBy int64 `json:"deletedBy" xorm:"'deleted_by'"`
- DeletedAt time.Time `json:"deletedAt" xorm:"'deleted_at'"`
- }
- func (t *ApiTransUnit) TableName() string {
- return "ps_api_trans_unit"
- }
|