| 123456789101112131415161718192021222324 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // BaseEquipmentQualification is the golang structure for table base_equipment_qualification.
- type BaseEquipmentQualification struct {
- Id int `orm:"Id,primary" json:"id"` // 主键
- EquipmentId int `orm:"EquipmentId" json:"equipmentId"` // 设备Id
- UserId int `orm:"EquipmentIdUserId" json:"user_id"` // 用户Id
- Qualification string `orm:"Qualification" json:"qualification"` // 预约资格:1普通资格,2资深资格, 3优先使用权
- AuthorizeTime *gtime.Time `orm:"AuthorizeTime" json:"authorizeTime"` // 授权时间
- CreateOn *gtime.Time `orm:"CreateOn" json:"createOn"` //
- CreateUserId string `orm:"CreateUserId" json:"createUserId"` //
- CreateBy string `orm:"CreateBy" json:"createBy"` //
- ModifiedOn *gtime.Time `orm:"ModifiedOn" json:"modifiedOn"` //
- ModifiedUserId string `orm:"ModifiedUserId" json:"modifiedUserId"` //
- ModifiedBy string `orm:"ModifiedBy" json:"modifiedBy"` //
- }
|