Commit f6440e3f authored by gaoyingwei's avatar gaoyingwei

修改 异常上报

parent 6924a7f8
......@@ -145,6 +145,7 @@ public class YcsbController extends BaseController
@PostMapping("/addMobile")
public AjaxResult addMobile(@RequestBody Ycsb ycsb)
{
ycsb.setSource("1");
return toAjax(ycsbService.insertYcsb(ycsb));
}
......
......@@ -94,6 +94,8 @@ public class Ycsb extends BaseEntity
/** 删除标志(0代表存在 2代表删除) */
private String delFlag;
/** 来源(0管理端 1移动端) */
private String source;
/** 创建时间 */
// 新增于2022-11-30
......@@ -309,4 +311,12 @@ public class Ycsb extends BaseEntity
public void setIsHandle(String isHandle) {
this.isHandle = isHandle;
}
public String getSource() {
return source;
}
public void setSource(String source) {
this.source = source;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment