Files

17 lines
243 B
Go
Raw Normal View History

2021-10-08 17:33:19 +08:00
package model
2021-10-13 14:35:24 +08:00
// SysIndustry 行业领域数据模型
2021-10-08 17:33:19 +08:00
type SysIndustry struct {
2021-10-13 14:35:24 +08:00
Model
ModelDeleted
ModelAt
2021-10-08 17:33:19 +08:00
}
func (*SysIndustry) TableName() string {
return "sys_industry"
}
func NewSysIndustry() *SysIndustry {
return &SysIndustry{}
}