ta_sale_customer_remark.go 504B

12345678910111213141516
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaSaleCustomerRemark struct {
  6. SalesCustomerRemarkId string `xorm:"not null VARCHAR(64)"`
  7. SaleCustomerId string `xorm:"VARCHAR(64)"`
  8. CustomerId string `xorm:"VARCHAR(64)"`
  9. SalesId string `xorm:"VARCHAR(64)"`
  10. RemarkTitle string `xorm:"VARCHAR(256)"`
  11. Remark string `xorm:"TEXT"`
  12. CreateDate time.Time `xorm:"DATETIME"`
  13. Status int `xorm:"SMALLINT(6)"`
  14. }