Commit 3a112151 authored by 竹天卫's avatar 竹天卫

优化

parent 53c5de94
......@@ -47,7 +47,7 @@ public class Method implements Serializable {
@ApiModelProperty("标准号")
private String standard;
@ApiModelProperty("编号")
@ApiModelProperty("检测依据编号")
private String number;
@ApiModelProperty("实施日期")
......
......@@ -17,7 +17,7 @@
(@i:=@i+1) as 序号,
t.name as 检测依据名,
t.standard as 标准号,
t.number as 编号,
t.number as 检测依据编号,
t.do_date as 实施日期,
t.up_date as 更新日期
FROM method t ,(select @i:=0)t
......
......@@ -107,7 +107,7 @@ public class MethodServiceImpl extends ServiceImpl<MethodMapper, Method> impleme
headers[0] = "序号";
headers[1] = "检测依据名";
headers[2] = "标准号";
headers[3] = "编号";
headers[3] = "检测依据编号";
headers[4] = "实施日期";
headers[5] = "更新日期";
List<Object[]> datas = new ArrayList<>(list.size());
......
......@@ -17,7 +17,7 @@
(@i:=@i+1) as 序号,
t.name as 检测依据名,
t.standard as 标准号,
t.number as 编号,
t.number as 检测依据编号,
t.do_date as 实施日期,
t.up_date as 更新日期
FROM method t ,(select @i:=0)t
......
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