ta_customer_account.go 532B

123456789101112131415161718
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaCustomerAccount struct {
  6. AccountId string `xorm:"not null pk VARCHAR(64)"`
  7. CustomerId string `xorm:"VARCHAR(64)"`
  8. CustomerName string `xorm:"VARCHAR(50)"`
  9. Amount string `xorm:"DECIMAL(8,2)"`
  10. Points string `xorm:"DECIMAL(8,2)"`
  11. Status int `xorm:"SMALLINT(6)"`
  12. OrgId string `xorm:"VARCHAR(64)"`
  13. CreateDate time.Time `xorm:"DATETIME"`
  14. PayedAmount string `xorm:"DECIMAL(8,2)"`
  15. PayedPoints string `xorm:"DECIMAL(8,2)"`
  16. }