ta_customer_card.go 899B

12345678910111213141516171819202122232425
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaCustomerCard struct {
  6. CustomerCardId string `xorm:"not null pk VARCHAR(64)"`
  7. CardId string `xorm:"VARCHAR(64)"`
  8. CustomerCardName string `xorm:"VARCHAR(64)"`
  9. CustomerId string `xorm:"VARCHAR(64)"`
  10. SalesId string `xorm:"VARCHAR(64)"`
  11. SalesName string `xorm:"VARCHAR(32)"`
  12. StartDate time.Time `xorm:"DATETIME"`
  13. EndDate time.Time `xorm:"DATETIME"`
  14. Status int `xorm:"SMALLINT(6)"`
  15. ReceiveDate time.Time `xorm:"DATETIME"`
  16. VerifyDate time.Time `xorm:"DATETIME"`
  17. CaseId string `xorm:"VARCHAR(64)"`
  18. OrgId string `xorm:"VARCHAR(64)"`
  19. VerifyStatus string `xorm:"VARCHAR(32)"`
  20. SerialCode string `xorm:"VARCHAR(64)"`
  21. ReceivingType string `xorm:"VARCHAR(20)"`
  22. Price string `xorm:"DECIMAL(64)"`
  23. }