Commit 6cbd8ab5 by jiang'yun

修改

parent d4ab65aa
...@@ -273,6 +273,11 @@ public class DjdcController { ...@@ -273,6 +273,11 @@ public class DjdcController {
//导出周期分析 //导出周期分析
List<DjZqsjfx> zqshfxList = djdcService.getZqshfxList(param); List<DjZqsjfx> zqshfxList = djdcService.getZqshfxList(param);
exportZqshfx(response,zqshfxList); exportZqshfx(response,zqshfxList);
case "exportZtgjsj":
//导出钻头关键数据
List<Djjc> djjcList = djdcService.getDjjcList(param);
ExcelUtil<Djjc> utilzt = new ExcelUtil<Djjc>(Djjc.class);
utilzt.exportExcel(response, djjcList, "Sheet1");
default: default:
} }
......
package com.ruoyi.project.zt.domain; package com.ruoyi.project.zt.domain;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data; import lombok.Data;
/** /**
...@@ -10,6 +11,7 @@ public class Djjc { ...@@ -10,6 +11,7 @@ public class Djjc {
//井号 //井号
@Excel(name = "井号")
private String jh; private String jh;
//开始完井时间 //开始完井时间
private String wjsjks; private String wjsjks;
...@@ -28,47 +30,58 @@ public class Djjc { ...@@ -28,47 +30,58 @@ public class Djjc {
private Double js; private Double js;
//开次 //开次
@Excel(name = "开次")
private String kc; private String kc;
//井段 //井段
@Excel(name = "井段")
private String jd; private String jd;
//层位 //钻头外径
private String cw; @Excel(name = "钻头外径")
private Double ztcc;
//进尺
private Double jc;
//机械钻速
private Double jxzs;
//钻头型号 //钻头型号
@Excel(name = "钻头型号")
private String ztxh; private String ztxh;
//钻头外径
private Double ztcc;
//喷嘴 //喷嘴
@Excel(name = "喷嘴")
private String pz; private String pz;
//磨损情况 //磨损情况
@Excel(name = "磨损情况")
private String mxqk; private String mxqk;
//起钻原因 //起钻原因
@Excel(name = "起钻原因")
private String qzyy; private String qzyy;
//层位
//指标 @Excel(name = "层位")
private Double zb; private String cw;
//钻井液密度 //钻井液密度
@Excel(name = "钻井液密度")
private Double zjymd; private Double zjymd;
//泵压
private Double lgby;
//排量 //排量
@Excel(name = "排量")
private Double pl; private Double pl;
//泵压
@Excel(name = "泵压")
private Double lgby;
//进尺
@Excel(name = "进尺")
private Double jc;
//机械钻速
@Excel(name = "机速")
private Double jxzs;
//指标
@Excel(name = "指标")
private Double zb;
......
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