|
@@ -1,7 +1,7 @@
|
|
package models
|
|
package models
|
|
|
|
|
|
import (
|
|
import (
|
|
- "github.com/rdlucklib/rdluck_tools/orm"
|
|
|
|
|
|
+ "github.com/beego/beego/v2/client/orm"
|
|
"time"
|
|
"time"
|
|
)
|
|
)
|
|
|
|
|
|
@@ -38,8 +38,7 @@ type Longzhonginfo struct {
|
|
}
|
|
}
|
|
|
|
|
|
func GetLongzhonginfoBySecName(secName string) (item *Longzhongdata, err error) {
|
|
func GetLongzhonginfoBySecName(secName string) (item *Longzhongdata, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `SELECT * FROM longzhonginfo WHERE sec_name=? `
|
|
sql := `SELECT * FROM longzhonginfo WHERE sec_name=? `
|
|
err = o.Raw(sql, secName).QueryRow(&item)
|
|
err = o.Raw(sql, secName).QueryRow(&item)
|
|
return
|
|
return
|
|
@@ -47,23 +46,20 @@ func GetLongzhonginfoBySecName(secName string) (item *Longzhongdata, err error)
|
|
|
|
|
|
//判断指标数据是否已经录入
|
|
//判断指标数据是否已经录入
|
|
func GetLongzhongdataCount(longzhonginfoId int, dt string) (count int, err error) {
|
|
func GetLongzhongdataCount(longzhonginfoId int, dt string) (count int, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `SELECT COUNT(1) AS count FROM longzhongdata WHERE longzhonginfo_id=? AND dt=? `
|
|
sql := `SELECT COUNT(1) AS count FROM longzhongdata WHERE longzhonginfo_id=? AND dt=? `
|
|
err = o.Raw(sql, longzhonginfoId, dt).QueryRow(&count)
|
|
err = o.Raw(sql, longzhonginfoId, dt).QueryRow(&count)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
func AddLongzhongdata(item *Longzhongdata) (err error) {
|
|
func AddLongzhongdata(item *Longzhongdata) (err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
_, err = o.Insert(item)
|
|
_, err = o.Insert(item)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
func ModifyLongzhongdata(item *Longzhongdata) (err error) {
|
|
func ModifyLongzhongdata(item *Longzhongdata) (err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := ` UPDATE longzhongdata
|
|
sql := ` UPDATE longzhongdata
|
|
SET
|
|
SET
|
|
close = ?,
|
|
close = ?,
|
|
@@ -79,15 +75,13 @@ func ModifyLongzhongdata(item *Longzhongdata) (err error) {
|
|
}
|
|
}
|
|
|
|
|
|
func AddLongzhonginfo(item *Longzhonginfo) (newId int64, err error) {
|
|
func AddLongzhonginfo(item *Longzhonginfo) (newId int64, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
newId, err = o.Insert(item)
|
|
newId, err = o.Insert(item)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
func ModifyLongzhonginfo(item *Longzhonginfo) (err error) {
|
|
func ModifyLongzhonginfo(item *Longzhonginfo) (err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `UPDATE longzhonginfo
|
|
sql := `UPDATE longzhonginfo
|
|
SET
|
|
SET
|
|
sec_name = ?,
|
|
sec_name = ?,
|
|
@@ -107,8 +101,7 @@ func ModifyLongzhonginfo(item *Longzhonginfo) (err error) {
|
|
|
|
|
|
//判断指标数据是否已经录入
|
|
//判断指标数据是否已经录入
|
|
func GetLongzhonginfoCount(classifyId int, unitid int64) (count int, err error) {
|
|
func GetLongzhonginfoCount(classifyId int, unitid int64) (count int, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `SELECT COUNT(1) AS count FROM longzhonginfo WHERE classify_id=? AND unitid=? `
|
|
sql := `SELECT COUNT(1) AS count FROM longzhonginfo WHERE classify_id=? AND unitid=? `
|
|
err = o.Raw(sql, classifyId, unitid).QueryRow(&count)
|
|
err = o.Raw(sql, classifyId, unitid).QueryRow(&count)
|
|
return
|
|
return
|
|
@@ -116,8 +109,7 @@ func GetLongzhonginfoCount(classifyId int, unitid int64) (count int, err error)
|
|
|
|
|
|
//判断指标数据是否已经录入
|
|
//判断指标数据是否已经录入
|
|
func GetLongzhonginfoBySecNameCount(secName string) (count int, err error) {
|
|
func GetLongzhonginfoBySecNameCount(secName string) (count int, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `SELECT COUNT(1) AS count FROM longzhonginfo WHERE sec_name=? `
|
|
sql := `SELECT COUNT(1) AS count FROM longzhonginfo WHERE sec_name=? `
|
|
err = o.Raw(sql, secName).QueryRow(&count)
|
|
err = o.Raw(sql, secName).QueryRow(&count)
|
|
return
|
|
return
|
|
@@ -143,8 +135,7 @@ type LzProductInfo struct {
|
|
}
|
|
}
|
|
|
|
|
|
func GetLongzhonginfoMaxId() (count int, err error) {
|
|
func GetLongzhonginfoMaxId() (count int, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `SELECT MAX(longzhonginfo_id) AS count FROM longzhonginfo`
|
|
sql := `SELECT MAX(longzhonginfo_id) AS count FROM longzhonginfo`
|
|
err = o.Raw(sql).QueryRow(&count)
|
|
err = o.Raw(sql).QueryRow(&count)
|
|
return
|
|
return
|
|
@@ -175,24 +166,21 @@ type LzProductInfoDetailResp struct {
|
|
}
|
|
}
|
|
|
|
|
|
func GetLongzhonginfoByUnitId(classifyName string, unitId int64) (item *Longzhonginfo, err error) {
|
|
func GetLongzhonginfoByUnitId(classifyName string, unitId int64) (item *Longzhonginfo, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `SELECT * FROM longzhonginfo WHERE unitid=? AND classify_name=?`
|
|
sql := `SELECT * FROM longzhonginfo WHERE unitid=? AND classify_name=?`
|
|
err = o.Raw(sql, unitId, classifyName).QueryRow(&item)
|
|
err = o.Raw(sql, unitId, classifyName).QueryRow(&item)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
func GetLongzhongDataById(lzInfoId int) (items []*Longzhongdata, err error) {
|
|
func GetLongzhongDataById(lzInfoId int) (items []*Longzhongdata, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `SELECT * FROM longzhongdata WHERE longzhonginfo_id=? ORDER BY dt DESC `
|
|
sql := `SELECT * FROM longzhongdata WHERE longzhonginfo_id=? ORDER BY dt DESC `
|
|
_, err = o.Raw(sql, lzInfoId).QueryRows(&items)
|
|
_, err = o.Raw(sql, lzInfoId).QueryRows(&items)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
func GetLongzhongDataMaxCount(classifyId int) (count int, err error) {
|
|
func GetLongzhongDataMaxCount(classifyId int) (count int, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `SELECT MAX(t.num) AS count FROM (
|
|
sql := `SELECT MAX(t.num) AS count FROM (
|
|
SELECT COUNT(1) AS num FROM longzhonginfo AS a
|
|
SELECT COUNT(1) AS num FROM longzhonginfo AS a
|
|
INNER JOIN longzhongdata AS b ON a.longzhonginfo_id=b.longzhonginfo_id
|
|
INNER JOIN longzhongdata AS b ON a.longzhonginfo_id=b.longzhonginfo_id
|
|
@@ -217,16 +205,14 @@ type LongzhonginfoList struct {
|
|
}
|
|
}
|
|
|
|
|
|
func GetLongzhonginfoList() (items []*LongzhonginfoList, err error) {
|
|
func GetLongzhonginfoList() (items []*LongzhonginfoList, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := ` SELECT * FROM longzhonginfo AS a `
|
|
sql := ` SELECT * FROM longzhonginfo AS a `
|
|
_, err = o.Raw(sql).QueryRows(&items)
|
|
_, err = o.Raw(sql).QueryRows(&items)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
func ModifyLongzhonginfoIsNormal(longzhonginfoId int) (err error) {
|
|
func ModifyLongzhonginfoIsNormal(longzhonginfoId int) (err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := ` UPDATE longzhonginfo SET is_normal=0 WHERE longzhonginfo_id=? `
|
|
sql := ` UPDATE longzhonginfo SET is_normal=0 WHERE longzhonginfo_id=? `
|
|
_, err = o.Raw(sql, longzhonginfoId).Exec()
|
|
_, err = o.Raw(sql, longzhonginfoId).Exec()
|
|
return
|
|
return
|
|
@@ -268,16 +254,14 @@ type Longzhongpriceinfo struct {
|
|
}
|
|
}
|
|
|
|
|
|
func AddLongzhongpriceinfo(item *Longzhongpriceinfo) (newId int64, err error) {
|
|
func AddLongzhongpriceinfo(item *Longzhongpriceinfo) (newId int64, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
newId, err = o.Insert(item)
|
|
newId, err = o.Insert(item)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
//判断指标数据是否已经录入
|
|
//判断指标数据是否已经录入
|
|
func GetLongzhongpriceinfoCount(unitid string) (count int, err error) {
|
|
func GetLongzhongpriceinfoCount(unitid string) (count int, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `SELECT COUNT(1) AS count FROM longzhongpriceinfo WHERE price_id=? `
|
|
sql := `SELECT COUNT(1) AS count FROM longzhongpriceinfo WHERE price_id=? `
|
|
err = o.Raw(sql, unitid).QueryRow(&count)
|
|
err = o.Raw(sql, unitid).QueryRow(&count)
|
|
return
|
|
return
|
|
@@ -285,8 +269,7 @@ func GetLongzhongpriceinfoCount(unitid string) (count int, err error) {
|
|
|
|
|
|
//判断指标数据是否已经录入
|
|
//判断指标数据是否已经录入
|
|
func GetLongzhongpriceinfo() (items []*Longzhongpriceinfo, err error) {
|
|
func GetLongzhongpriceinfo() (items []*Longzhongpriceinfo, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `SELECT * FROM longzhongpriceinfo `
|
|
sql := `SELECT * FROM longzhongpriceinfo `
|
|
_, err = o.Raw(sql).QueryRows(&items)
|
|
_, err = o.Raw(sql).QueryRows(&items)
|
|
return
|
|
return
|
|
@@ -310,16 +293,14 @@ type Longzhongpricedata struct {
|
|
}
|
|
}
|
|
|
|
|
|
func AddLongzhongpricedata(item *Longzhongpricedata) (newId int64, err error) {
|
|
func AddLongzhongpricedata(item *Longzhongpricedata) (newId int64, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
newId, err = o.Insert(item)
|
|
newId, err = o.Insert(item)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
//判断指标数据是否已经录入
|
|
//判断指标数据是否已经录入
|
|
func GetLongzhongpricedataCount(longzhongpriceinfoId int, priceDate string) (count int, err error) {
|
|
func GetLongzhongpricedataCount(longzhongpriceinfoId int, priceDate string) (count int, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `SELECT COUNT(1) AS count FROM longzhongpricedata WHERE longzhongpriceinfo_id=? AND price_date=? `
|
|
sql := `SELECT COUNT(1) AS count FROM longzhongpricedata WHERE longzhongpriceinfo_id=? AND price_date=? `
|
|
err = o.Raw(sql, longzhongpriceinfoId, priceDate).QueryRow(&count)
|
|
err = o.Raw(sql, longzhongpriceinfoId, priceDate).QueryRow(&count)
|
|
return
|
|
return
|
|
@@ -348,8 +329,7 @@ type LzPriceDataResp struct {
|
|
}
|
|
}
|
|
|
|
|
|
func GetLongzhongPriceDataMaxCount(productName string) (count int, err error) {
|
|
func GetLongzhongPriceDataMaxCount(productName string) (count int, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `SELECT MAX(t.num) AS count FROM (
|
|
sql := `SELECT MAX(t.num) AS count FROM (
|
|
SELECT COUNT(1) AS num FROM longzhongpriceinfo AS a
|
|
SELECT COUNT(1) AS num FROM longzhongpriceinfo AS a
|
|
INNER JOIN longzhongpricedata AS b ON a.longzhongpriceinfo_id=b.longzhongpriceinfo_id
|
|
INNER JOIN longzhongpricedata AS b ON a.longzhongpriceinfo_id=b.longzhongpriceinfo_id
|
|
@@ -378,16 +358,14 @@ type LongzhongpricedataItems struct {
|
|
}
|
|
}
|
|
|
|
|
|
func GetLongzhongPriceDataById(lzPriceInfoId int) (items []*LongzhongpricedataItems, err error) {
|
|
func GetLongzhongPriceDataById(lzPriceInfoId int) (items []*LongzhongpricedataItems, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `SELECT * FROM longzhongpricedata WHERE longzhongpriceinfo_id=? ORDER BY price_date DESC `
|
|
sql := `SELECT * FROM longzhongpricedata WHERE longzhongpriceinfo_id=? ORDER BY price_date DESC `
|
|
_, err = o.Raw(sql, lzPriceInfoId).QueryRows(&items)
|
|
_, err = o.Raw(sql, lzPriceInfoId).QueryRows(&items)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
func ModifyLongzhongpriceinfo(item *Longzhongpriceinfo) (err error) {
|
|
func ModifyLongzhongpriceinfo(item *Longzhongpriceinfo) (err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `UPDATE longzhongpriceinfo
|
|
sql := `UPDATE longzhongpriceinfo
|
|
SET
|
|
SET
|
|
standard = ?,
|
|
standard = ?,
|
|
@@ -404,8 +382,7 @@ WHERE price_id = ? `
|
|
}
|
|
}
|
|
|
|
|
|
func GetDisplayTime(longzhonginfoId int) (display_time string, err error) {
|
|
func GetDisplayTime(longzhonginfoId int) (display_time string, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := ` SELECT max(a.display_time) AS display_time FROM longzhongdata AS a WHERE a.longzhonginfo_id=? `
|
|
sql := ` SELECT max(a.display_time) AS display_time FROM longzhongdata AS a WHERE a.longzhonginfo_id=? `
|
|
err = o.Raw(sql, longzhonginfoId).QueryRow(&display_time)
|
|
err = o.Raw(sql, longzhonginfoId).QueryRow(&display_time)
|
|
return
|
|
return
|
|
@@ -486,23 +463,20 @@ type LongzhongSurveyProduct struct {
|
|
|
|
|
|
//判断指标数据是否已经录入
|
|
//判断指标数据是否已经录入
|
|
func GetLongzhongSurveyProductCount(quotaSampleId int64) (count int, err error) {
|
|
func GetLongzhongSurveyProductCount(quotaSampleId int64) (count int, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `SELECT COUNT(1) AS count FROM longzhong_survey_product WHERE quota_sample_id=? `
|
|
sql := `SELECT COUNT(1) AS count FROM longzhong_survey_product WHERE quota_sample_id=? `
|
|
err = o.Raw(sql, quotaSampleId).QueryRow(&count)
|
|
err = o.Raw(sql, quotaSampleId).QueryRow(&count)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
func AddLongzhongSurveyProduct(item *LongzhongSurveyProduct) (lastId int64, err error) {
|
|
func AddLongzhongSurveyProduct(item *LongzhongSurveyProduct) (lastId int64, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
lastId, err = o.Insert(item)
|
|
lastId, err = o.Insert(item)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
func ModifLongzhongSurveyProduct(item *LongzhongSurveyProduct) (err error) {
|
|
func ModifLongzhongSurveyProduct(item *LongzhongSurveyProduct) (err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `UPDATE longzhong_survey_product
|
|
sql := `UPDATE longzhong_survey_product
|
|
SET
|
|
SET
|
|
breed_id = ?,
|
|
breed_id = ?,
|
|
@@ -519,8 +493,7 @@ func ModifLongzhongSurveyProduct(item *LongzhongSurveyProduct) (err error) {
|
|
|
|
|
|
//判断指标数据是否已经录入
|
|
//判断指标数据是否已经录入
|
|
func GetLongzhongSurveyList() (items []*LongzhongSurveyProduct, err error) {
|
|
func GetLongzhongSurveyList() (items []*LongzhongSurveyProduct, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `SELECT * FROM longzhong_survey_product ORDER BY survey_product_id ASC`
|
|
sql := `SELECT * FROM longzhong_survey_product ORDER BY survey_product_id ASC`
|
|
_, err = o.Raw(sql).QueryRows(&items)
|
|
_, err = o.Raw(sql).QueryRows(&items)
|
|
return
|
|
return
|
|
@@ -561,8 +534,7 @@ type LongzhongSurveyData struct {
|
|
}
|
|
}
|
|
|
|
|
|
func AddLongzhongSurveyData(item *LongzhongSurveyData) (err error) {
|
|
func AddLongzhongSurveyData(item *LongzhongSurveyData) (err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
_, err = o.Insert(item)
|
|
_, err = o.Insert(item)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
@@ -611,8 +583,7 @@ type LzSurveyData struct {
|
|
|
|
|
|
//判断指标数据是否已经录入
|
|
//判断指标数据是否已经录入
|
|
func GetLzSurveyDataCount(surveyProductId, quotaSampleId int, dataTime string) (count int, err error) {
|
|
func GetLzSurveyDataCount(surveyProductId, quotaSampleId int, dataTime string) (count int, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `SELECT COUNT(1) AS count FROM longzhong_survey_data WHERE survey_product_id=? AND quota_sample_id=? AND data_time=? `
|
|
sql := `SELECT COUNT(1) AS count FROM longzhong_survey_data WHERE survey_product_id=? AND quota_sample_id=? AND data_time=? `
|
|
err = o.Raw(sql, surveyProductId, quotaSampleId, dataTime).QueryRow(&count)
|
|
err = o.Raw(sql, surveyProductId, quotaSampleId, dataTime).QueryRow(&count)
|
|
return
|
|
return
|
|
@@ -626,8 +597,7 @@ type LzSurveyMaxAndMinInfo struct {
|
|
}
|
|
}
|
|
|
|
|
|
func GetLzSurveyMaxAndMinInfo(surveyProductId, quotaSampleId int) (item *LzSurveyMaxAndMinInfo, err error) {
|
|
func GetLzSurveyMaxAndMinInfo(surveyProductId, quotaSampleId int) (item *LzSurveyMaxAndMinInfo, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := ``
|
|
sql := ``
|
|
sql = ` SELECT MIN(data_time) AS min_date,MAX(data_time) AS max_date,MIN(input_value) AS min_value,MAX(input_value) AS max_value
|
|
sql = ` SELECT MIN(data_time) AS min_date,MAX(data_time) AS max_date,MIN(input_value) AS min_value,MAX(input_value) AS max_value
|
|
FROM longzhong_survey_data WHERE survey_product_id=? AND quota_sample_id=? `
|
|
FROM longzhong_survey_data WHERE survey_product_id=? AND quota_sample_id=? `
|
|
@@ -636,16 +606,14 @@ func GetLzSurveyMaxAndMinInfo(surveyProductId, quotaSampleId int) (item *LzSurve
|
|
}
|
|
}
|
|
|
|
|
|
func ModifyLzSurveyMaxAndMinInfo(item *LzSurveyMaxAndMinInfo, surveyProductId int) (err error) {
|
|
func ModifyLzSurveyMaxAndMinInfo(item *LzSurveyMaxAndMinInfo, surveyProductId int) (err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := ` UPDATE longzhong_survey_product SET start_date=?,end_date=?,min_value=?,max_value=? WHERE survey_product_id=? `
|
|
sql := ` UPDATE longzhong_survey_product SET start_date=?,end_date=?,min_value=?,max_value=? WHERE survey_product_id=? `
|
|
_, err = o.Raw(sql, item.MinDate, item.MaxDate, item.MinValue, item.MaxValue, surveyProductId).Exec()
|
|
_, err = o.Raw(sql, item.MinDate, item.MaxDate, item.MinValue, item.MaxValue, surveyProductId).Exec()
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
func ModifLongzhongSurveyProductCode(lzCode string, surveyProductId int) (err error) {
|
|
func ModifLongzhongSurveyProductCode(lzCode string, surveyProductId int) (err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `UPDATE longzhong_survey_product
|
|
sql := `UPDATE longzhong_survey_product
|
|
SET lz_code= ?,modify_time=NOW()
|
|
SET lz_code= ?,modify_time=NOW()
|
|
WHERE survey_product_id = ? `
|
|
WHERE survey_product_id = ? `
|
|
@@ -655,16 +623,14 @@ func ModifLongzhongSurveyProductCode(lzCode string, surveyProductId int) (err er
|
|
|
|
|
|
//判断指标数据是否已经录入
|
|
//判断指标数据是否已经录入
|
|
func GetLongzhongSurveyProductItem(quotaSampleId int64) (item *LongzhongSurveyProduct, err error) {
|
|
func GetLongzhongSurveyProductItem(quotaSampleId int64) (item *LongzhongSurveyProduct, err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := `SELECT * FROM longzhong_survey_product WHERE quota_sample_id=? `
|
|
sql := `SELECT * FROM longzhong_survey_product WHERE quota_sample_id=? `
|
|
err = o.Raw(sql, quotaSampleId).QueryRow(&item)
|
|
err = o.Raw(sql, quotaSampleId).QueryRow(&item)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
func ModifyLzSurveyData(inputValue string, surveyDataId int) (err error) {
|
|
func ModifyLzSurveyData(inputValue string, surveyDataId int) (err error) {
|
|
- o := orm.NewOrm()
|
|
|
|
- o.Using("edb")
|
|
|
|
|
|
+ o := orm.NewOrmUsingDB("edb")
|
|
sql := ` UPDATE longzhong_survey_data SET input_value=? WHERE survey_data_id=? `
|
|
sql := ` UPDATE longzhong_survey_data SET input_value=? WHERE survey_data_id=? `
|
|
_, err = o.Raw(sql, inputValue, surveyDataId).Exec()
|
|
_, err = o.Raw(sql, inputValue, surveyDataId).Exec()
|
|
return
|
|
return
|