导出列名加单位
parent
00c61ef1a7
commit
81461a674c
|
|
@ -30,169 +30,169 @@ public class OsmoticWaterRVo {
|
|||
/**
|
||||
* 水温
|
||||
*/
|
||||
@ExcelProperty({"${title}", "水温"})
|
||||
@ExcelProperty({"${title}", "水温(℃)"})
|
||||
private String temp;
|
||||
|
||||
/**
|
||||
* PH
|
||||
*/
|
||||
@ExcelProperty({"${title}", "PH"})
|
||||
@ExcelProperty({"${title}", "PH(mg/L)"})
|
||||
private String ph;
|
||||
|
||||
/**
|
||||
* 溶解氧
|
||||
*/
|
||||
@ExcelProperty({"${title}", "溶解氧"})
|
||||
@ExcelProperty({"${title}", "溶解氧(mg/L)"})
|
||||
private String bod;
|
||||
|
||||
/**
|
||||
* 高锰酸钾指数
|
||||
*/
|
||||
@ExcelProperty({"${title}", "高锰酸钾指数"})
|
||||
@ExcelProperty({"${title}", "高锰酸钾指数(mg/L)"})
|
||||
private String mn;
|
||||
|
||||
/**
|
||||
* 化学需氧量
|
||||
*/
|
||||
@ExcelProperty({"${title}", "化学需氧量"})
|
||||
@ExcelProperty({"${title}", "化学需氧量(mg/L)"})
|
||||
private String codcr;
|
||||
|
||||
/**
|
||||
* 五日生化需氧量
|
||||
*/
|
||||
@ExcelProperty({"${title}", "五日生化需氧量"})
|
||||
@ExcelProperty({"${title}", "五日生化需氧量(mg/L)"})
|
||||
private String bod5;
|
||||
|
||||
/**
|
||||
* 氨氮
|
||||
*/
|
||||
@ExcelProperty({"${title}", "氨氮"})
|
||||
@ExcelProperty({"${title}", "氨氮(mg/L)"})
|
||||
private String nh3n;
|
||||
|
||||
/**
|
||||
* 总磷
|
||||
*/
|
||||
@ExcelProperty({"${title}", "总磷"})
|
||||
@ExcelProperty({"${title}", "总磷(mg/L)"})
|
||||
private String tp;
|
||||
|
||||
/**
|
||||
* 总氮
|
||||
*/
|
||||
@ExcelProperty({"${title}", "总氮"})
|
||||
@ExcelProperty({"${title}", "总氮(mg/L)"})
|
||||
private String tn;
|
||||
|
||||
/**
|
||||
* 铜
|
||||
*/
|
||||
@ExcelProperty({"${title}", "铜"})
|
||||
@ExcelProperty({"${title}", "铜(mg/L)"})
|
||||
private String cu;
|
||||
|
||||
/**
|
||||
* 锌
|
||||
*/
|
||||
@ExcelProperty({"${title}", "锌"})
|
||||
@ExcelProperty({"${title}", "锌(mg/L)"})
|
||||
private String zn;
|
||||
|
||||
/**
|
||||
* 氟化物
|
||||
*/
|
||||
@ExcelProperty({"${title}", "氟化物"})
|
||||
@ExcelProperty({"${title}", "氟化物(mg/L)"})
|
||||
private String f;
|
||||
|
||||
/**
|
||||
* 硒
|
||||
*/
|
||||
@ExcelProperty({"${title}", "硒"})
|
||||
@ExcelProperty({"${title}", "硒(mg/L)"})
|
||||
private String se;
|
||||
|
||||
/**
|
||||
* 砷
|
||||
*/
|
||||
@ExcelProperty({"${title}", "砷"})
|
||||
@ExcelProperty({"${title}", "砷(mg/L)"})
|
||||
private String arsenic;
|
||||
|
||||
/**
|
||||
* 汞
|
||||
*/
|
||||
@ExcelProperty({"${title}", "汞"})
|
||||
@ExcelProperty({"${title}", "汞(mg/L)"})
|
||||
private String hg;
|
||||
|
||||
/**
|
||||
* 镉
|
||||
*/
|
||||
@ExcelProperty({"${title}", "镉"})
|
||||
@ExcelProperty({"${title}", "镉(mg/L)"})
|
||||
private String cd;
|
||||
|
||||
/**
|
||||
* 铬
|
||||
*/
|
||||
@ExcelProperty({"${title}", "铬"})
|
||||
@ExcelProperty({"${title}", "铬(mg/L)"})
|
||||
private String cr;
|
||||
|
||||
/**
|
||||
* 铅
|
||||
*/
|
||||
@ExcelProperty({"${title}", "铅"})
|
||||
@ExcelProperty({"${title}", "铅(mg/L)"})
|
||||
private String pb;
|
||||
|
||||
/**
|
||||
* 氰化物
|
||||
*/
|
||||
@ExcelProperty({"${title}", "氰化物"})
|
||||
@ExcelProperty({"${title}", "氰化物(mg/L)"})
|
||||
private String cn;
|
||||
|
||||
/**
|
||||
* 挥发酚
|
||||
*/
|
||||
@ExcelProperty({"${title}", "挥发酚"})
|
||||
@ExcelProperty({"${title}", "挥发酚(mg/L)"})
|
||||
private String vlph;
|
||||
|
||||
/**
|
||||
* 石油类
|
||||
*/
|
||||
@ExcelProperty({"${title}", "石油类"})
|
||||
@ExcelProperty({"${title}", "石油类(mg/L)"})
|
||||
private String oil;
|
||||
|
||||
/**
|
||||
* 阴离子表面活性剂
|
||||
*/
|
||||
@ExcelProperty({"${title}", "阴离子表面活性剂"})
|
||||
@ExcelProperty({"${title}", "阴离子表面活性剂(mg/L)"})
|
||||
private String las;
|
||||
|
||||
/**
|
||||
* 硫化物
|
||||
*/
|
||||
@ExcelProperty({"${title}", "硫化物"})
|
||||
@ExcelProperty({"${title}", "硫化物(mg/L)"})
|
||||
private String s;
|
||||
|
||||
/**
|
||||
* 大肠菌群数
|
||||
*/
|
||||
@ExcelProperty({"${title}", "大肠菌群数"})
|
||||
@ExcelProperty({"${title}", "大肠菌群数(mg/L)"})
|
||||
private String tcg;
|
||||
|
||||
/**
|
||||
* 浊度
|
||||
*/
|
||||
@ExcelProperty({"${title}", "浊度"})
|
||||
@ExcelProperty({"${title}", "浊度(NTU)"})
|
||||
private String turb;
|
||||
|
||||
/**
|
||||
* 电导率
|
||||
*/
|
||||
@ExcelProperty({"${title}", "电导率"})
|
||||
@ExcelProperty({"${title}", "电导率(μs/cm)"})
|
||||
private String cond;
|
||||
|
||||
/**
|
||||
* 高锰酸盐
|
||||
*/
|
||||
@ExcelProperty({"${title}", "高锰酸盐"})
|
||||
@ExcelProperty({"${title}", "高锰酸盐(mg/L)"})
|
||||
private String codmn;
|
||||
|
||||
/**
|
||||
* 叶绿素
|
||||
*/
|
||||
@ExcelProperty({"${title}", "叶绿素"})
|
||||
@ExcelProperty({"${title}", "叶绿素(ug/L)"})
|
||||
private String chla;
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue