13 lines
173 B
Go
13 lines
173 B
Go
![]() |
package model
|
||
|
|
||
|
type SysIndustry struct {
|
||
|
}
|
||
|
|
||
|
func (*SysIndustry) TableName() string {
|
||
|
return "sys_industry"
|
||
|
}
|
||
|
|
||
|
func NewSysIndustry() *SysIndustry {
|
||
|
return &SysIndustry{}
|
||
|
}
|