|
@@ -3,29 +3,57 @@ package dao
|
|
|
import "time"
|
|
|
|
|
|
type Tenant struct {
|
|
|
- ID int64 `gorm:"primary_key" json:"id"` //编号
|
|
|
- TenantId string `gorm:"type:varchar(12);default '000000'" json:"tenantId"` //租户id
|
|
|
- Code string `gorm:"type:varchar(12)" json:"code"` //用户编号
|
|
|
- Account string `gorm:"type:varchar(12)" json:"account"` //账号
|
|
|
- Password string `gorm:"type:varchar(12)" json:"password"` //密码
|
|
|
- Name string `gorm:"type:varchar(12)" json:"name"` //昵称
|
|
|
- RealName string `gorm:"type:varchar(12)" json:"real_name"` //真名
|
|
|
- Avatar string `gorm:"type:varchar(12)" json:"avatar"` //头像
|
|
|
- Email string `gorm:"type:varchar(12)" json:"email"` //邮箱
|
|
|
- Phone string `gorm:"type:varchar(12)" json:"phone"` //手机
|
|
|
- Birthday string `gorm:"type:datetime" json:"birthday"` //生日
|
|
|
- Sex int `gorm:"type:smallint" json:"sex"` //生日
|
|
|
- RoleId string `gorm:"type:varchar(1000)" json:"role_id"` //角色id
|
|
|
- DeptId string `gorm:"type:varchar(1000)" json:"dept_id"` //部门id
|
|
|
- PostId string `gorm:"type:varchar(1000)" json:"post_id"` //岗位id
|
|
|
- CreateUser int64 `gorm:"type:bigint" json:"createUser"` //创建人
|
|
|
- CreateDept int64 `gorm:"type:bigint" json:"createDept"` //创建部门
|
|
|
- CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
|
|
|
- UpdateUser int64 `gorm:"type:bigint" json:"updateUser"` //修改人
|
|
|
- UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
|
|
|
- Status int `gorm:"type:int " json:"status"` //状态
|
|
|
- IsDeleted int `gorm:"type:int" json:"isDeleted"` //是否删除 0=未删除,1=删除
|
|
|
- GroupId int `gorm:"type:int" json:"groupId"` //用户分组id
|
|
|
- BigScreenIndexCameraIds string `gorm:"type:varchar(255)" json:"bigScreenIndexCameraIds"` //数据大屏中摄像头保存位置
|
|
|
- SecuritySixScreen string `gorm:"type:varchar(255)" json:"security_six_screen"` //安防页面六分屏
|
|
|
+ ID int64 `gorm:"primary_key" json:"id"` //编号
|
|
|
+ TenantId string `gorm:"type:varchar(12);default '000000'" json:"tenantId"` //租户id
|
|
|
+ TenantName string `gorm:"type:varchar(50)" json:"tenantName"` //租户名称
|
|
|
+ Domain string `gorm:"type:varchar(255)" json:"domain"` //域名地址
|
|
|
+ BackgroundUrl string `gorm:"type:varchar(1000)" json:"backgroundUrl"` //系统背景
|
|
|
+ SysLogoUrl string `gorm:"type:varchar(1000)" json:"sysLogoUrl"` //logo图表
|
|
|
+ Linkman string `gorm:"type:varchar(20)" json:"linkman"` //联系人
|
|
|
+ ContactNumber string `gorm:"type:varchar(20)" json:"contactNumber"` //联系电话
|
|
|
+ Address string `gorm:"type:varchar(255)" json:"address"` //联系地址
|
|
|
+ AccountNumber int `gorm:"type:int;default -1" json:"accountNumber"` //邮箱
|
|
|
+ ExpireTime time.Time `gorm:"type:datetime" json:"expireTime"` //过期时间
|
|
|
+ DatasourceId int64 `gorm:"type:bigint" json:"datasourceId"` //数据源
|
|
|
+ LicenseKey string `gorm:"type:varchar(1000)" json:"licenseKey"` //授权码
|
|
|
+ BigScreeName string `gorm:"type:varchar(60)" json:"bigScreeName"` //大屏端显示名称
|
|
|
+ CreateUser int64 `gorm:"type:bigint" json:"createUser"` //创建人
|
|
|
+ CreateDept int64 `gorm:"type:bigint" json:"createDept"` //创建部门
|
|
|
+ CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
|
|
|
+ UpdateUser int64 `gorm:"type:bigint" json:"updateUser"` //修改人
|
|
|
+ UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
|
|
|
+ Status int `gorm:"type:int " json:"status"` //状态
|
|
|
+ IsDeleted int `gorm:"type:int" json:"isDeleted"` //是否删除 0=未删除,1=删除
|
|
|
+ PassKey string `gorm:"type:varchar(10)" json:"passKey"` //租户登录Key
|
|
|
+ LoginDisplayName string `gorm:"type:varchar(60)" json:"loginDisplayName"` //登录页面显示名称
|
|
|
+ ContactEmail string `gorm:"type:varchar(255)" json:"contactEmail"` //联系邮箱
|
|
|
+}
|
|
|
+
|
|
|
+func (Tenant) TableName() string {
|
|
|
+ return "tenant"
|
|
|
+}
|
|
|
+
|
|
|
+func (c *Tenant) GetTenant() error {
|
|
|
+ return Db.Model(&c).Where("tenant_id = ?", c.TenantId).Find(&c).Error
|
|
|
+}
|
|
|
+
|
|
|
+func (c *Tenant) GetTenantByPasskey() error {
|
|
|
+ return Db.Model(&c).Where("pass_key = ?", c.PassKey).Find(&c).Error
|
|
|
+}
|
|
|
+
|
|
|
+type TenantCode struct {
|
|
|
+ ID int64 `gorm:"primary_key" json:"id"` //编号
|
|
|
+ TenantId string `gorm:"type:varchar(12)" json:"tenantId"` //租户id
|
|
|
+ CityCode string `gorm:"type:varchar(6)" json:"cityCode"` //城市行政编码
|
|
|
+ CityName string `gorm:"type:varchar(255)" json:"cityName"` //城市名称
|
|
|
+ CityLng float64 `gorm:"type:double(18, 14)" json:"cityLng"` //经度
|
|
|
+ CityLat float64 `gorm:"type:double(18, 14)" json:"cityLat"` //经度
|
|
|
+}
|
|
|
+
|
|
|
+func (TenantCode) TableName() string {
|
|
|
+ return "tenant_code"
|
|
|
+}
|
|
|
+
|
|
|
+func (c *TenantCode) GetTenantCode() error {
|
|
|
+ return Db.Model(&c).Where("tenant_id = ?", c.TenantId).Find(&c).Error
|
|
|
}
|