|
@@ -114,7 +114,7 @@ type CygxActivitySpecialTripBillDetailList struct {
|
|
|
ChartPermissionName string `description:"行业名称"`
|
|
|
}
|
|
|
|
|
|
-func GetCygxActivitySpecialTripBillDetailList(condition string, pars []interface{}) (item []*CygxActivitySpecialTripBillList, err error) {
|
|
|
+func GetCygxActivitySpecialTripBillDetailList(condition string, pars []interface{}) (item []*CygxActivitySpecialTripBillDetailList, err error) {
|
|
|
o := orm.NewOrm()
|
|
|
sql := `SELECT
|
|
|
b.*,
|
|
@@ -131,12 +131,13 @@ func GetCygxActivitySpecialTripBillDetailList(condition string, pars []interface
|
|
|
}
|
|
|
|
|
|
type CygxActivitySpecialPointsBillResp struct {
|
|
|
- Id int `gorm:"column:id;primary_key;AUTO_INCREMENT"`
|
|
|
- Content string `gorm:"column:content" ` // 内容说明
|
|
|
- Total string `gorm:"column:points;default:0;NOT NULL" ` // 合计
|
|
|
- CreateTime string `gorm:"column:create_time" ` // 创建时间
|
|
|
- CompanyId int `gorm:"column:company_id;default:0" ` // 公司ID
|
|
|
- CompanyName string `gorm:"column:company_name" ` // 公司名称
|
|
|
- RealName string `gorm:"column:real_name"` // 用户实际名称
|
|
|
- BillDetailed int `gorm:"column:bill_detailed;default:0;NOT NULL" json:""` // 流水明细,判断是进账还是出账
|
|
|
+ Id int `gorm:"column:id;primary_key;AUTO_INCREMENT"`
|
|
|
+ Content string `gorm:"column:content" ` // 内容说明
|
|
|
+ Total string `gorm:"column:points;default:0;NOT NULL" ` // 合计
|
|
|
+ CreateTime string `gorm:"column:create_time" ` // 创建时间
|
|
|
+ CompanyId int `gorm:"column:company_id;default:0" ` // 公司ID
|
|
|
+ CompanyName string `gorm:"column:company_name" ` // 公司名称
|
|
|
+ RealName string `gorm:"column:real_name"` // 用户实际名称
|
|
|
+ BillDetailed int `gorm:"column:bill_detailed;default:0;NOT NULL" json:""` // 流水明细,判断是进账还是出账
|
|
|
+ ActivityName string `description:"活动标题"`
|
|
|
}
|