| 1234567891011121314151617181920212223242526 |
- package viewmodel
- import "encoding/json"
- type ModelObjectInfo struct {
- ModelId int64 `json:"modelId" xorm:"'model_id' bigint pk comment('Model ID') "`
- ModelTitle string `json:"modelTitle" xorm:"'model_title' varchar(127) comment('Model Title') "`
- ObjectId int64 `json:"objectId" xorm:"'object_id' bigint pk comment('Object ID') "`
- ObjectType int64 `json:"objectType" xorm:"'object_type' bigint comment('Object Type') "`
- ObjectTitle string `json:"objectTitle" xorm:"'object_title' varchar(127) comment('Object Title') "`
- ObjectCode string `json:"objectCode" xorm:"'object_code' varchar(127) comment('Object Code') "`
- Comment string `json:"comment" xorm:"'comment' varchar(255) comment('Comment') "`
- IsFixed int64 `json:"isFixed" xorm:"'is_fixed' int comment('Is Fixed?') "`
- }
- func (t *ModelObjectInfo) TableName() string {
- return "ds_object"
- }
- func (t *ModelObjectInfo) MarshalBinary() (data []byte, err error){
- return json.Marshal(t)
- }
- func (t *ModelObjectInfo) UnmarshalBinary(data []byte) (err error){
- return json.Unmarshal(data, t)
- }
|