| 123456789101112131415161718192021222324252627282930313233 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // RecordHistory is the golang structure for table record_history.
- type RecordHistory struct {
- Id int `orm:"Id,primary" json:"id"` // Id
- ProjectSourse string `orm:"ProjectSourse" json:"projectSourse"` // 项目来源,所属系统 mcs、biobank、lims
- ProjectAccount string `orm:"ProjectAccount" json:"projectAccount"` // 开锁人员账号
- ProjectAccountName string `orm:"ProjectAccountName" json:"projectAccountName"` // 指令发送发送对象 人脸识别智能锁、智能锁,历史原因字段有误
- SendTo string `orm:"SendTo" json:"sendTo"` // 发送账号名称 历史原因字段有误
- DataItem string `orm:"DataItem" json:"dataItem"` // 设备类型 31:扫码智能锁, 33:人脸识别智能锁
- Message string `orm:"Message" json:"message"` // 消息 发送消息内容
- IsSend int `orm:"IsSend" json:"isSend"` // 是否发送成功 0成功,1失败,2未发送
- DeviceId string `orm:"DeviceId" json:"deviceId"` // 设备id
- DeviceName string `orm:"DeviceName" json:"deviceName"` // 设备名
- ChannelCode string `orm:"ChannelCode" json:"channelCode"` // 传感器编号(门禁ID)
- ChannelName string `orm:"ChannelName" json:"channelName"` // 传感器名(门禁名称)
- CreateOn *gtime.Time `orm:"CreateOn" json:"createOn"` // 开锁时间
- CreatedById int `orm:"CreatedById" json:"createdById"` // 创建人ID
- UpdatedById int `orm:"UpdatedById" json:"updatedById"` // 更新人ID
- CreatedBy string `orm:"CreatedBy" json:"createdBy"` // 创建人
- UpdatedBy string `orm:"UpdatedBy" json:"updatedBy"` // 更新人
- CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
- UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
- DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
- }
|