123456789101112131415161718192021222324252627282930313233 |
- package model
- import "time"
- type NeckRingBindLog struct {
- Id int64 `json:"id"`
- Number string `json:"number"`
- CowId int64 `json:"cowId"`
- BindAt int64 `json:"bindAt"`
- UnBindAt int64 `json:"unBindAt"`
- OperationId int64 `json:"operationId"`
- OperationName string `json:"operationName"`
- CreatedAt int64 `json:"createdAt"`
- UpdatedAt int64 `json:"updatedAt"`
- }
- func (n *NeckRingBindLog) TableName() string {
- return "neck_ring_bind_log"
- }
- func NewNeckRingBindLog(number string, cowId int64, operationUser *SystemUser) *NeckRingBindLog {
- return &NeckRingBindLog{
- Number: number,
- BindAt: time.Now().Unix(),
- CowId: cowId,
- OperationId: operationUser.Id,
- OperationName: operationUser.Name,
- }
- }
- func (n *NeckRingBindLog) UnBind() {
- n.UnBindAt = time.Now().Unix()
- }
|