- package model
-
- import (
- "time"
- )
-
- type TaSaleCustomerRemark struct {
- SalesCustomerRemarkId string `xorm:"not null VARCHAR(64)"`
- SaleCustomerId string `xorm:"VARCHAR(64)"`
- CustomerId string `xorm:"VARCHAR(64)"`
- SalesId string `xorm:"VARCHAR(64)"`
- RemarkTitle string `xorm:"VARCHAR(256)"`
- Remark string `xorm:"TEXT"`
- CreateDate time.Time `xorm:"DATETIME"`
- Status int `xorm:"SMALLINT(6)"`
- }
|