neck_ring_bind_log.go 857 B

123456789101112131415161718192021222324252627282930313233
  1. package model
  2. import "time"
  3. type NeckRingBindLog struct {
  4. Id int64 `json:"id"`
  5. Number string `json:"number"`
  6. CowId int64 `json:"cowId"`
  7. BindAt int64 `json:"bindAt"`
  8. UnBindAt int64 `json:"unBindAt"`
  9. OperationId int64 `json:"operationId"`
  10. OperationName string `json:"operationName"`
  11. CreatedAt int64 `json:"createdAt"`
  12. UpdatedAt int64 `json:"updatedAt"`
  13. }
  14. func (n *NeckRingBindLog) TableName() string {
  15. return "neck_ring_bind_log"
  16. }
  17. func NewNeckRingBindLog(number string, cowId int64, operationUser *SystemUser) *NeckRingBindLog {
  18. return &NeckRingBindLog{
  19. Number: number,
  20. BindAt: time.Now().Unix(),
  21. CowId: cowId,
  22. OperationId: operationUser.Id,
  23. OperationName: operationUser.Name,
  24. }
  25. }
  26. func (n *NeckRingBindLog) UnBind() {
  27. n.UnBindAt = time.Now().Unix()
  28. }