You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package category
|
|
|
|
func (Category) TableName() string {
|
|
return "category"
|
|
}
|
|
|
|
type Category struct {
|
|
Id int64 `json:"id"`
|
|
FormTemplateId int64 `json:"form_template_id"`
|
|
DataId int64 `json:"data_id"`
|
|
Data string `json:"data"`
|
|
}
|