| 1234567891011121314151617181920212223 |
- package datamodel
- import "time"
- type BizObjectMapping struct {
- MappingId int64 `json:"mappingId" xorm:"'mapping_id' bigint pk comment('Mapping ID') "`
- BizId int64 `json:"bizId" xorm:"'biz_id' bigint comment('Biz ID') "`
- ObjectId int64 `json:"objectId" xorm:"'object_id' bigint comment('Object ID') "`
- MappingModelId int64 `json:"mappingModelId" xorm:"'mapping_model_id' bigint comment('Mapping Model ID') "`
- MappingObjectId int64 `json:"mappingObjectId" xorm:"'mapping_object_id' bigint comment('Mapping Object ID')"`
- SortNo int64 `json:"sortNo" xorm:"'sort_no' bigint comment('Sort No') "`
- 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 *BizObjectMapping) TableName() string {
- return "biz_object_mapping"
- }
|