package paymentinfo import "time" type OilPaymentInfo struct { Id int `xorm:"not null pk autoincr INT(11)"` SrcId int `xorm:"INT(11)"` SupplierId int `xorm:"comment('Supplier表') INT(11)"` SupplierCertId int `xorm:"comment('SupplierCert表') INT(11)"` USCCode string `xorm:"comment('统一社会信用代码') VARCHAR(40)"` SupplierName string `xorm:"comment('企业名称') VARCHAR(100)"` ProjectName string `xorm:"comment('项目名称') VARCHAR(100)"` Amount string `xorm:"comment('缴费金额') DECIMAL(10,2)"` IsPay string `xorm:"comment('是否缴费 1 是 2否') VARCHAR(5)"` PayMode string `xorm:"comment('缴费方式') VARCHAR(10)"` PayType string `xorm:"comment('缴费类型 1 准入缴费 2 年审缴费') VARCHAR(10)"` PayDate time.Time `xorm:"comment('缴费日期') DATETIME"` BankSerialNum string `xorm:"comment('银行流水号') VARCHAR(50)"` BankName string `xorm:"comment('银行名称') VARCHAR(100)"` Remark string `xorm:"comment('备注') VARCHAR(255)"` CreateUserId int `xorm:"INT(11)"` CreateOn time.Time `xorm:"DATETIME"` CreateBy string `xorm:"VARCHAR(50)"` ModifiedOn time.Time `xorm:"DATETIME"` ModifiedUserId int `xorm:"INT(11)"` ModifiedBy string `xorm:"VARCHAR(50)"` ID_GF int `xorm:"INT(11)"` SureBatchNo string `xorm:"VARCHAR(50)"` } type PaymentinfoList struct { OilPaymentInfo `xorm:"extends"` SupplierTypeCode string SupplierTypeName string SupplierName string CommercialNo string }