// 成本计算列表
func CostingSelect(c *gin.Context) {
//获得请求头信息
jwtBase := c.GetHeader("jwtBase")
configs.BaseName(jwtBase)
//var data []model.WbBillflow
//configs.Db.Raw("select * from wb_billflow where id>=?", 1).Find(&data)
var data []map[string]interface{}
configs.Db.Raw("select * from wb_billflow where id>=?", 1).Find(&data)
c.JSON(200, gin.H{
"code": 2000,
"data": data,
"message": "查询成功",
})
}
09-17
323
01-21
3064
07-09