24 lines
1.2 KiB
Go
24 lines
1.2 KiB
Go
package models
|
|
|
|
import "time"
|
|
|
|
type SystemTenant struct {
|
|
ID uint64 `orm:"column(id);pk;auto" json:"id"`
|
|
TenantCode string `orm:"column(tenant_code);size(32)" json:"tenant_code"`
|
|
TenantName string `orm:"column(tenant_name);size(128)" json:"tenant_name"`
|
|
ContactPerson *string `orm:"column(contact_person);size(64);null" json:"contact_person"`
|
|
ContactPhone *string `orm:"column(contact_phone);size(20);null" json:"contact_phone"`
|
|
ContactEmail *string `orm:"column(contact_email);size(128);null" json:"contact_email"`
|
|
Address *string `orm:"column(address);size(255);null" json:"address"`
|
|
Worktime *string `orm:"column(worktime);size(255);null" json:"worktime"`
|
|
Status int8 `orm:"column(status);default(1)" json:"status"`
|
|
Remark *string `orm:"column(remark);size(512);null" json:"remark"`
|
|
CreateTime time.Time `orm:"column(create_time);auto_now_add;type(datetime)" json:"create_time"`
|
|
UpdateTime time.Time `orm:"column(update_time);auto_now;type(datetime)" json:"update_time"`
|
|
DeleteTime *time.Time `orm:"column(delete_time);type(datetime);null" json:"delete_time"`
|
|
}
|
|
|
|
func (m *SystemTenant) TableName() string {
|
|
return "yz_system_tenant"
|
|
}
|