123456789101112131415
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaCaseKeyUse struct {
  6. UseId string `xorm:"not null pk VARCHAR(64)"`
  7. KeyId string `xorm:"VARCHAR(64)"`
  8. CustomerId string `xorm:"VARCHAR(64)"`
  9. CustomerName string `xorm:"VARCHAR(50)"`
  10. UseDate time.Time `xorm:"DATETIME"`
  11. ReturnDate time.Time `xorm:"DATETIME"`
  12. Status int `xorm:"SMALLINT(6)"`
  13. }