|
|
insertCodeSql := fmt.Sprintf("INSERT INTO %s (`name`,`scene`,`skip_verify`,`state`,`source`,`agent_id`,`config_id`,`qr_code`,`remark`,`is_del`,`create_date`)VALUES(?,?,?,?,?,?,?,?,?,?,?);", entity.WxQyCodeTable)
|
|
|
- w.Name, w.Scene, common.If(w.SkipVerify, 0, 1), "state", w.Source, entity.Application[0]["agentId"], acwOutput.ConfigId, acwOutput.QrCode, w.Remark, 0, date.NowFormat(date.Date_Full_Layout),
|
|
|
+ w.Name, w.Scene, common.If(w.SkipVerify, 0, 1), state, w.Source, entity.Application[0]["agentId"], acwOutput.ConfigId, acwOutput.QrCode, w.Remark, 0, date.NowFormat(date.Date_Full_Layout),
|