Commit e40d862b authored by ZWT's avatar ZWT

feat(零碳): 长庆

1.添加easy excel配置,增加转换器,增加全局excel导出样式,增加场站下拉选解析器;
2.开发光伏电站模板导出接口,增加模板导出类,并完成接口冒烟测试及接口文档;
3.间开制度管理模块新增设为基础制度开关接口,添加线上接口文档并完成接口冒烟测试;

BREAKING CHANGE: 无

Closes 无

[skip ci]
parent b9a3d1cf
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import xstartup.annotation.XText;
import java.io.Serializable;
@TableName("gas_day_plan_config")
public class GasDayPlanConfigEnt implements Serializable {
@TableId(type = IdType.ASSIGN_UUID)
private String id;
@TableField
private String aOuId;
@TableField
private String aOuName;
@XText("数据项管理组织机构id")
@TableField
private String mOuId;
@XText("数据项管理组织机构名称")
@TableField
private String mOuName;
@XText("管线id")
@TableField
private String pipelineId;
@XText("管线名称")
@TableField
private String pipelineName;
@XText("管线显示名称")
@TableField
private String pipelineDisplayName;
@XText("场站id")
@TableField
private String stationId;
@XText("场站名称")
@TableField
private String stationName;
@XText("客户id")
@TableField
private String customerId;
@XText("客户名称")
@TableField
private String customerName;
@XText("托运商id")
@TableField
private String shipperId;
@XText("托运商名称")
@TableField
private String shipperName;
@XText("排序")
@TableField
private Integer sort;
@XText("日计划数据点")
@TableField
private Integer dayPlanDid;
@XText("日计划数据点-备注")
@TableField
private Integer remarkDid;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getaOuId() {
return aOuId;
}
public void setaOuId(String aOuId) {
this.aOuId = aOuId;
}
public String getaOuName() {
return aOuName;
}
public void setaOuName(String aOuName) {
this.aOuName = aOuName;
}
public String getmOuId() {
return mOuId;
}
public void setmOuId(String mOuId) {
this.mOuId = mOuId;
}
public String getmOuName() {
return mOuName;
}
public void setmOuName(String mOuName) {
this.mOuName = mOuName;
}
public String getPipelineId() {
return pipelineId;
}
public void setPipelineId(String pipelineId) {
this.pipelineId = pipelineId;
}
public String getPipelineName() {
return pipelineName;
}
public void setPipelineName(String pipelineName) {
this.pipelineName = pipelineName;
}
public String getPipelineDisplayName() {
return pipelineDisplayName;
}
public void setPipelineDisplayName(String pipelineDisplayName) {
this.pipelineDisplayName = pipelineDisplayName;
}
public String getStationId() {
return stationId;
}
public void setStationId(String stationId) {
this.stationId = stationId;
}
public String getStationName() {
return stationName;
}
public void setStationName(String stationName) {
this.stationName = stationName;
}
public String getCustomerId() {
return customerId;
}
public void setCustomerId(String customerId) {
this.customerId = customerId;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public String getShipperId() {
return shipperId;
}
public void setShipperId(String shipperId) {
this.shipperId = shipperId;
}
public String getShipperName() {
return shipperName;
}
public void setShipperName(String shipperName) {
this.shipperName = shipperName;
}
public Integer getSort() {
return sort;
}
public void setSort(Integer sort) {
this.sort = sort;
}
public Integer getDayPlanDid() {
return dayPlanDid;
}
public void setDayPlanDid(Integer dayPlanDid) {
this.dayPlanDid = dayPlanDid;
}
public Integer getRemarkDid() {
return remarkDid;
}
public void setRemarkDid(Integer remarkDid) {
this.remarkDid = remarkDid;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import xstartup.annotation.XText;
import java.io.Serializable;
public class GasDayPlanConfigView implements Serializable {
@TableField
private String id;
@TableField
private String aOuId;
@TableField
private String aOuName;
@XText("数据项管理组织机构id")
@TableField
private String mOuId;
@XText("数据项管理组织机构名称")
@TableField
private String mOuName;
@XText("管线id")
@TableField
private String pipelineId;
@XText("管线名称")
@TableField
private String pipelineName;
@XText("管线显示名称")
@TableField
private String pipelineDisplayName;
@XText("场站id")
@TableField
private String stationId;
@XText("场站名称")
@TableField
private String stationName;
@XText("客户id")
@TableField
private String customerId;
@XText("客户名称")
@TableField
private String customerName;
@XText("托运商id")
@TableField
private String shipperId;
@XText("托运商名称")
@TableField
private String shipperName;
@XText("排序")
@TableField
private Integer sort;
@XText("日计划数据点")
@TableField
private Integer dayPlanDid;
@XText("日计划数据点-备注")
@TableField
private Integer remarkDid;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getaOuId() {
return aOuId;
}
public void setaOuId(String aOuId) {
this.aOuId = aOuId;
}
public String getaOuName() {
return aOuName;
}
public void setaOuName(String aOuName) {
this.aOuName = aOuName;
}
public String getmOuId() {
return mOuId;
}
public void setmOuId(String mOuId) {
this.mOuId = mOuId;
}
public String getmOuName() {
return mOuName;
}
public void setmOuName(String mOuName) {
this.mOuName = mOuName;
}
public String getPipelineId() {
return pipelineId;
}
public void setPipelineId(String pipelineId) {
this.pipelineId = pipelineId;
}
public String getPipelineName() {
return pipelineName;
}
public void setPipelineName(String pipelineName) {
this.pipelineName = pipelineName;
}
public String getPipelineDisplayName() {
return pipelineDisplayName;
}
public void setPipelineDisplayName(String pipelineDisplayName) {
this.pipelineDisplayName = pipelineDisplayName;
}
public String getStationId() {
return stationId;
}
public void setStationId(String stationId) {
this.stationId = stationId;
}
public String getStationName() {
return stationName;
}
public void setStationName(String stationName) {
this.stationName = stationName;
}
public String getCustomerId() {
return customerId;
}
public void setCustomerId(String customerId) {
this.customerId = customerId;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public String getShipperId() {
return shipperId;
}
public void setShipperId(String shipperId) {
this.shipperId = shipperId;
}
public String getShipperName() {
return shipperName;
}
public void setShipperName(String shipperName) {
this.shipperName = shipperName;
}
public Integer getSort() {
return sort;
}
public void setSort(Integer sort) {
this.sort = sort;
}
public Integer getDayPlanDid() {
return dayPlanDid;
}
public void setDayPlanDid(Integer dayPlanDid) {
this.dayPlanDid = dayPlanDid;
}
public Integer getRemarkDid() {
return remarkDid;
}
public void setRemarkDid(Integer remarkDid) {
this.remarkDid = remarkDid;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import xstartup.annotation.XText;
import java.io.Serializable;
@TableName("gas_upload_day_plan_config")
public class GasUploadDayPlanConfigEnt implements Serializable {
@TableId(type = IdType.AUTO)
private String id;
@XText("数据项管理组织机构id")
@TableField
private String mOuId;
@XText("数据项管理组织机构名称")
@TableField
private String mOuName;
@XText("管线id")
@TableField
private String pipelineId;
@XText("管线名称")
@TableField
private String pipelineName;
@XText("管线显示名称")
@TableField
private String pipelineDisplayName;
@XText("场站id")
@TableField
private String stationId;
@XText("场站名称")
@TableField
private String stationName;
@XText("托运商id")
@TableField
private String shipperId;
@XText("托运商名称")
@TableField
private String shipperName;
@XText("气源id")
@TableField
private String sourceId;
@XText("气源名称")
@TableField
private String sourceName;
@XText("排序")
@TableField
private Integer sort;
@XText("日指定(万方)数据点")
@TableField
private Integer dayPlanDid;
@XText("日指定(万方)数据点")
@TableField
private Integer remarkDid;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getMOuId() {
return this.mOuId;
}
public void setMOuId(String value) {
this.mOuId = value;
}
public String getMOuName() {
return this.mOuName;
}
public void setMOuName(String value) {
this.mOuName = value;
}
public String getPipelineId() {
return this.pipelineId;
}
public void setPipelineId(String value) {
this.pipelineId = value;
}
public String getPipelineName() {
return this.pipelineName;
}
public void setPipelineName(String value) {
this.pipelineName = value;
}
public String getStationId() {
return this.stationId;
}
public void setStationId(String value) {
this.stationId = value;
}
public String getStationName() {
return this.stationName;
}
public void setStationName(String value) {
this.stationName = value;
}
public String getShipperId() {
return this.shipperId;
}
public void setShipperId(String value) {
this.shipperId = value;
}
public String getShipperName() {
return this.shipperName;
}
public void setShipperName(String value) {
this.shipperName = value;
}
public String getSourceId() {
return this.sourceId;
}
public void setSourceId(String value) {
this.sourceId = value;
}
public String getSourceName() {
return this.sourceName;
}
public void setSourceName(String value) {
this.sourceName = value;
}
public Integer getSort() {
return this.sort;
}
public void setSort(Integer value) {
this.sort = value;
}
public Integer getDayPlanDid() {
return this.dayPlanDid;
}
public void setDayPlanDid(Integer value) {
this.dayPlanDid = value;
}
public String getmOuId() {
return mOuId;
}
public void setmOuId(String mOuId) {
this.mOuId = mOuId;
}
public String getmOuName() {
return mOuName;
}
public void setmOuName(String mOuName) {
this.mOuName = mOuName;
}
public Integer getRemarkDid() {
return remarkDid;
}
public void setRemarkDid(Integer remarkDid) {
this.remarkDid = remarkDid;
}
public String getPipelineDisplayName() {
return pipelineDisplayName;
}
public void setPipelineDisplayName(String pipelineDisplayName) {
this.pipelineDisplayName = pipelineDisplayName;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import xstartup.annotation.XText;
import java.io.Serializable;
public class GasUploadDayPlanConfigView implements Serializable {
@TableField
private String id;
@XText("数据项管理组织机构id")
@TableField
private String mOuId;
@XText("数据项管理组织机构名称")
@TableField
private String mOuName;
@XText("管线id")
@TableField
private String pipelineId;
@XText("管线名称")
@TableField
private String pipelineName;
@XText("管线显示名称")
@TableField
private String pipelineDisplayName;
@XText("场站id")
@TableField
private String stationId;
@XText("场站名称")
@TableField
private String stationName;
@XText("托运商id")
@TableField
private String shipperId;
@XText("托运商名称")
@TableField
private String shipperName;
@XText("气源id")
@TableField
private String sourceId;
@XText("气源名称")
@TableField
private String sourceName;
@XText("排序")
@TableField
private Integer sort;
@XText("日指定(万方)数据点")
@TableField
private Integer dayPlanDid;
@XText("日指定(万方)数据点")
@TableField
private Integer remarkDid;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getMOuId() {
return this.mOuId;
}
public void setMOuId(String value) {
this.mOuId = value;
}
public String getMOuName() {
return this.mOuName;
}
public void setMOuName(String value) {
this.mOuName = value;
}
public String getPipelineId() {
return this.pipelineId;
}
public void setPipelineId(String value) {
this.pipelineId = value;
}
public String getPipelineName() {
return this.pipelineName;
}
public void setPipelineName(String value) {
this.pipelineName = value;
}
public String getPipelineDisplayName() {
return this.pipelineDisplayName;
}
public void setPipelineDisplayName(String value) {
this.pipelineDisplayName = value;
}
public String getStationId() {
return this.stationId;
}
public void setStationId(String value) {
this.stationId = value;
}
public String getStationName() {
return this.stationName;
}
public void setStationName(String value) {
this.stationName = value;
}
public String getShipperId() {
return this.shipperId;
}
public void setShipperId(String value) {
this.shipperId = value;
}
public String getShipperName() {
return this.shipperName;
}
public void setShipperName(String value) {
this.shipperName = value;
}
public String getSourceId() {
return this.sourceId;
}
public void setSourceId(String value) {
this.sourceId = value;
}
public String getSourceName() {
return this.sourceName;
}
public void setSourceName(String value) {
this.sourceName = value;
}
public Integer getSort() {
return this.sort;
}
public void setSort(Integer value) {
this.sort = value;
}
public String getmOuId() {
return mOuId;
}
public void setmOuId(String mOuId) {
this.mOuId = mOuId;
}
public String getmOuName() {
return mOuName;
}
public void setmOuName(String mOuName) {
this.mOuName = mOuName;
}
public Integer getDayPlanDid() {
return dayPlanDid;
}
public void setDayPlanDid(Integer dayPlanDid) {
this.dayPlanDid = dayPlanDid;
}
public Integer getRemarkDid() {
return remarkDid;
}
public void setRemarkDid(Integer remarkDid) {
this.remarkDid = remarkDid;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
@TableName("metering_customer")
public class MeteringCustomerEnt implements Serializable {
@TableField
private String id;
@TableField
private String customerName;
@TableField
private String customerFullName;
@TableField
private Date createDate;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getCustomerName() {
return this.customerName;
}
public void setCustomerName(String value) {
this.customerName = value;
}
public String getCustomerFullName() {
return this.customerFullName;
}
public void setCustomerFullName(String value) {
this.customerFullName = value;
}
public Date getCreateDate() {
return this.createDate;
}
public void setCreateDate(Date value) {
this.createDate = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
import java.util.Date;
public class MeteringCustomerView implements Serializable {
@TableField
private String id;
@TableField
private String customerName;
@TableField
private String customerFullName;
@TableField
private Date createDate;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getCustomerName() {
return this.customerName;
}
public void setCustomerName(String value) {
this.customerName = value;
}
public String getCustomerFullName() {
return this.customerFullName;
}
public void setCustomerFullName(String value) {
this.customerFullName = value;
}
public Date getCreateDate() {
return this.createDate;
}
public void setCreateDate(Date value) {
this.createDate = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
@TableName("metering_dictionary")
public class MeteringDictionaryEnt implements Serializable {
@TableField
private Integer id;
@TableField
private Integer sort;
@TableField
private String dName;
@TableField
private Integer parentId;
@TableField
private Integer isLeaf;
@TableField
private String changeDname;
@TableField
private String changeDnameHis;
@TableField
private Integer examineStatus;
@TableField
private String workflowId;
@TableField
private Integer isDelete;
@TableField
private String createById;
@TableField
private String createByName;
@TableField
private Date createTime;
@TableField
private String bak;
public Integer getId() {
return this.id;
}
public void setId(Integer value) {
this.id = value;
}
public Integer getSort() {
return this.sort;
}
public void setSort(Integer value) {
this.sort = value;
}
public String getDName() {
return this.dName;
}
public void setDName(String value) {
this.dName = value;
}
public Integer getParentId() {
return this.parentId;
}
public void setParentId(Integer value) {
this.parentId = value;
}
public Integer getIsLeaf() {
return this.isLeaf;
}
public void setIsLeaf(Integer value) {
this.isLeaf = value;
}
public String getChangeDname() {
return this.changeDname;
}
public void setChangeDname(String value) {
this.changeDname = value;
}
public String getChangeDnameHis() {
return this.changeDnameHis;
}
public void setChangeDnameHis(String value) {
this.changeDnameHis = value;
}
public Integer getExamineStatus() {
return this.examineStatus;
}
public void setExamineStatus(Integer value) {
this.examineStatus = value;
}
public String getWorkflowId() {
return this.workflowId;
}
public void setWorkflowId(String value) {
this.workflowId = value;
}
public Integer getIsDelete() {
return this.isDelete;
}
public void setIsDelete(Integer value) {
this.isDelete = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getBak() {
return this.bak;
}
public void setBak(String value) {
this.bak = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
@TableName("metering_dictionary_rel")
public class MeteringDictionaryRelEnt implements Serializable {
@TableField
private Integer id;
@TableField
private Integer dicId;
@TableField
private Integer parentId;
@TableField
private Date createDate;
public Integer getId() {
return this.id;
}
public void setId(Integer value) {
this.id = value;
}
public Integer getDicId() {
return this.dicId;
}
public void setDicId(Integer value) {
this.dicId = value;
}
public Integer getParentId() {
return this.parentId;
}
public void setParentId(Integer value) {
this.parentId = value;
}
public Date getCreateDate() {
return this.createDate;
}
public void setCreateDate(Date value) {
this.createDate = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
import java.util.Date;
public class MeteringDictionaryRelView implements Serializable {
@TableField
private Integer id;
@TableField
private Integer dicId;
@TableField
private Integer parentId;
@TableField
private Date createDate;
public Integer getId() {
return this.id;
}
public void setId(Integer value) {
this.id = value;
}
public Integer getDicId() {
return this.dicId;
}
public void setDicId(Integer value) {
this.dicId = value;
}
public Integer getParentId() {
return this.parentId;
}
public void setParentId(Integer value) {
this.parentId = value;
}
public Date getCreateDate() {
return this.createDate;
}
public void setCreateDate(Date value) {
this.createDate = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
import java.util.Date;
public class MeteringDictionaryView implements Serializable {
@TableField
private Integer id;
@TableField
private Integer sort;
@TableField
private String dName;
@TableField
private Integer parentId;
@TableField
private Integer isLeaf;
@TableField
private String changeDname;
@TableField
private String changeDnameHis;
@TableField
private Integer examineStatus;
@TableField
private String workflowId;
@TableField
private Integer isDelete;
@TableField
private String createById;
@TableField
private String createByName;
@TableField
private Date createTime;
@TableField
private String bak;
public Integer getId() {
return this.id;
}
public void setId(Integer value) {
this.id = value;
}
public Integer getSort() {
return this.sort;
}
public void setSort(Integer value) {
this.sort = value;
}
public String getDName() {
return this.dName;
}
public void setDName(String value) {
this.dName = value;
}
public Integer getParentId() {
return this.parentId;
}
public void setParentId(Integer value) {
this.parentId = value;
}
public Integer getIsLeaf() {
return this.isLeaf;
}
public void setIsLeaf(Integer value) {
this.isLeaf = value;
}
public String getChangeDname() {
return this.changeDname;
}
public void setChangeDname(String value) {
this.changeDname = value;
}
public String getChangeDnameHis() {
return this.changeDnameHis;
}
public void setChangeDnameHis(String value) {
this.changeDnameHis = value;
}
public Integer getExamineStatus() {
return this.examineStatus;
}
public void setExamineStatus(Integer value) {
this.examineStatus = value;
}
public String getWorkflowId() {
return this.workflowId;
}
public void setWorkflowId(String value) {
this.workflowId = value;
}
public Integer getIsDelete() {
return this.isDelete;
}
public void setIsDelete(Integer value) {
this.isDelete = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getBak() {
return this.bak;
}
public void setBak(String value) {
this.bak = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
@TableName("metering_enterprie")
public class MeteringEnterprieEnt implements Serializable {
@TableField
private String id;
@TableField
private String ouName;
@TableField
private String shortName;
@TableField
private Integer sort;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getOuName() {
return this.ouName;
}
public void setOuName(String value) {
this.ouName = value;
}
public String getShortName() {
return this.shortName;
}
public void setShortName(String value) {
this.shortName = value;
}
public Integer getSort() {
return this.sort;
}
public void setSort(Integer value) {
this.sort = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
public class MeteringEnterprieView implements Serializable {
@TableField
private String id;
@TableField
private String ouName;
@TableField
private String shortName;
@TableField
private Integer sort;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getOuName() {
return this.ouName;
}
public void setOuName(String value) {
this.ouName = value;
}
public String getShortName() {
return this.shortName;
}
public void setShortName(String value) {
this.shortName = value;
}
public Integer getSort() {
return this.sort;
}
public void setSort(Integer value) {
this.sort = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
@TableName("metering_new_customer_name")
public class MeteringNewCustomerNameEnt implements Serializable {
@TableField
private String id;
@TableField
private String customerName;
@TableField
private Date createDate;
@TableField
private String creater;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getCustomerName() {
return this.customerName;
}
public void setCustomerName(String value) {
this.customerName = value;
}
public Date getCreateDate() {
return this.createDate;
}
public void setCreateDate(Date value) {
this.createDate = value;
}
public String getCreater() {
return this.creater;
}
public void setCreater(String value) {
this.creater = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
import java.util.Date;
public class MeteringNewCustomerNameView implements Serializable {
@TableField
private String id;
@TableField
private String customerName;
@TableField
private Date createDate;
@TableField
private String creater;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getCustomerName() {
return this.customerName;
}
public void setCustomerName(String value) {
this.customerName = value;
}
public Date getCreateDate() {
return this.createDate;
}
public void setCreateDate(Date value) {
this.createDate = value;
}
public String getCreater() {
return this.creater;
}
public void setCreater(String value) {
this.creater = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
@TableName("metering_participation")
public class MeteringParticipationEnt implements Serializable {
@TableField
private Integer id;
@TableField
private String stationId;
@TableField
private String customerId;
@TableField
private String createId;
@TableField
private String createName;
@TableField
private Date createDate;
@TableField
private String pipelineId;
public Integer getId() {
return this.id;
}
public void setId(Integer value) {
this.id = value;
}
public String getStationId() {
return this.stationId;
}
public void setStationId(String value) {
this.stationId = value;
}
public String getCustomerId() {
return this.customerId;
}
public void setCustomerId(String value) {
this.customerId = value;
}
public String getCreateId() {
return this.createId;
}
public void setCreateId(String value) {
this.createId = value;
}
public String getCreateName() {
return this.createName;
}
public void setCreateName(String value) {
this.createName = value;
}
public Date getCreateDate() {
return this.createDate;
}
public void setCreateDate(Date value) {
this.createDate = value;
}
public String getPipelineId() {
return this.pipelineId;
}
public void setPipelineId(String value) {
this.pipelineId = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
import java.util.Date;
public class MeteringParticipationView implements Serializable {
@TableField
private Integer id;
@TableField
private String stationId;
@TableField
private String customerId;
@TableField
private String createId;
@TableField
private String createName;
@TableField
private Date createDate;
@TableField
private String pipelineId;
public Integer getId() {
return this.id;
}
public void setId(Integer value) {
this.id = value;
}
public String getStationId() {
return this.stationId;
}
public void setStationId(String value) {
this.stationId = value;
}
public String getCustomerId() {
return this.customerId;
}
public void setCustomerId(String value) {
this.customerId = value;
}
public String getCreateId() {
return this.createId;
}
public void setCreateId(String value) {
this.createId = value;
}
public String getCreateName() {
return this.createName;
}
public void setCreateName(String value) {
this.createName = value;
}
public Date getCreateDate() {
return this.createDate;
}
public void setCreateDate(Date value) {
this.createDate = value;
}
public String getPipelineId() {
return this.pipelineId;
}
public void setPipelineId(String value) {
this.pipelineId = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
@TableName("metering_pipe_station_customer_rel")
public class MeteringPipeStationCustomerRelEnt implements Serializable {
@TableField
private String pipelineId;
@TableField
private String stationId;
@TableField
private String clientId;
@TableField
private Date createDate;
@TableField
private String creater;
public String getPipelineId() {
return this.pipelineId;
}
public void setPipelineId(String value) {
this.pipelineId = value;
}
public String getStationId() {
return this.stationId;
}
public void setStationId(String value) {
this.stationId = value;
}
public String getClientId() {
return this.clientId;
}
public void setClientId(String value) {
this.clientId = value;
}
public Date getCreateDate() {
return this.createDate;
}
public void setCreateDate(Date value) {
this.createDate = value;
}
public String getCreater() {
return this.creater;
}
public void setCreater(String value) {
this.creater = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
import java.util.Date;
public class MeteringPipeStationCustomerRelView implements Serializable {
@TableField
private String pipelineId;
@TableField
private String stationId;
@TableField
private String clientId;
@TableField
private Date createDate;
@TableField
private String creater;
public String getPipelineId() {
return this.pipelineId;
}
public void setPipelineId(String value) {
this.pipelineId = value;
}
public String getStationId() {
return this.stationId;
}
public void setStationId(String value) {
this.stationId = value;
}
public String getClientId() {
return this.clientId;
}
public void setClientId(String value) {
this.clientId = value;
}
public Date getCreateDate() {
return this.createDate;
}
public void setCreateDate(Date value) {
this.createDate = value;
}
public String getCreater() {
return this.creater;
}
public void setCreater(String value) {
this.creater = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import xstartup.annotation.XText;
import java.io.Serializable;
import java.util.Date;
@TableName("metering_verfication_info")
public class MeteringVerficationInfoEnt implements Serializable {
@XText("id")
@TableField
private Integer id;
@XText("设备台账ID")
@TableField
private Integer equipmentId;
@XText("检定单位")
@TableField
private String uint;
@XText("检定日期")
@TableField
private Date date;
@XText("检定结论")
@TableField
private Integer result;
@XText("检定类别")
@TableField
private Integer type;
@XText("检定方式")
@TableField
private Integer method;
@XText("检定证书编号")
@TableField
private String certificateNumber;
@XText("超检原因")
@TableField
private String overdueCause;
@XText("工作流id")
@TableField
private String workflowId;
@XText("状态")
@TableField
private Integer auditStatus;
@XText("创建人id")
@TableField
private String createrId;
@XText("创建人")
@TableField
private String creater;
@XText("创建时间")
@TableField
private Date createDate;
public Integer getId() {
return this.id;
}
public void setId(Integer value) {
this.id = value;
}
public Integer getEquipmentId() {
return this.equipmentId;
}
public void setEquipmentId(Integer value) {
this.equipmentId = value;
}
public String getUint() {
return this.uint;
}
public void setUint(String value) {
this.uint = value;
}
public Date getDate() {
return this.date;
}
public void setDate(Date value) {
this.date = value;
}
public Integer getResult() {
return this.result;
}
public void setResult(Integer value) {
this.result = value;
}
public Integer getType() {
return this.type;
}
public void setType(Integer value) {
this.type = value;
}
public Integer getMethod() {
return this.method;
}
public void setMethod(Integer value) {
this.method = value;
}
public String getCertificateNumber() {
return this.certificateNumber;
}
public void setCertificateNumber(String value) {
this.certificateNumber = value;
}
public String getOverdueCause() {
return this.overdueCause;
}
public void setOverdueCause(String value) {
this.overdueCause = value;
}
public String getWorkflowId() {
return this.workflowId;
}
public void setWorkflowId(String value) {
this.workflowId = value;
}
public Integer getAuditStatus() {
return this.auditStatus;
}
public void setAuditStatus(Integer value) {
this.auditStatus = value;
}
public String getCreaterId() {
return this.createrId;
}
public void setCreaterId(String value) {
this.createrId = value;
}
public String getCreater() {
return this.creater;
}
public void setCreater(String value) {
this.creater = value;
}
public Date getCreateDate() {
return this.createDate;
}
public void setCreateDate(Date value) {
this.createDate = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import xstartup.annotation.XText;
import java.io.Serializable;
import java.util.Date;
public class MeteringVerficationInfoView implements Serializable {
@XText("id")
@TableField
private Integer id;
@XText("设备台账ID")
@TableField
private Integer equipmentId;
@XText("检定单位")
@TableField
private String uint;
@XText("检定日期")
@TableField
private Date date;
@XText("检定结论")
@TableField
private Integer result;
@XText("检定类别")
@TableField
private Integer type;
@XText("检定方式")
@TableField
private Integer method;
@XText("检定证书编号")
@TableField
private String certificateNumber;
@XText("超检原因")
@TableField
private String overdueCause;
@XText("工作流id")
@TableField
private String workflowId;
@XText("状态")
@TableField
private Integer auditStatus;
@XText("创建人id")
@TableField
private String createrId;
@XText("创建人")
@TableField
private String creater;
@XText("创建时间")
@TableField
private Date createDate;
public Integer getId() {
return this.id;
}
public void setId(Integer value) {
this.id = value;
}
public Integer getEquipmentId() {
return this.equipmentId;
}
public void setEquipmentId(Integer value) {
this.equipmentId = value;
}
public String getUint() {
return this.uint;
}
public void setUint(String value) {
this.uint = value;
}
public Date getDate() {
return this.date;
}
public void setDate(Date value) {
this.date = value;
}
public Integer getResult() {
return this.result;
}
public void setResult(Integer value) {
this.result = value;
}
public Integer getType() {
return this.type;
}
public void setType(Integer value) {
this.type = value;
}
public Integer getMethod() {
return this.method;
}
public void setMethod(Integer value) {
this.method = value;
}
public String getCertificateNumber() {
return this.certificateNumber;
}
public void setCertificateNumber(String value) {
this.certificateNumber = value;
}
public String getOverdueCause() {
return this.overdueCause;
}
public void setOverdueCause(String value) {
this.overdueCause = value;
}
public String getWorkflowId() {
return this.workflowId;
}
public void setWorkflowId(String value) {
this.workflowId = value;
}
public Integer getAuditStatus() {
return this.auditStatus;
}
public void setAuditStatus(Integer value) {
this.auditStatus = value;
}
public String getCreaterId() {
return this.createrId;
}
public void setCreaterId(String value) {
this.createrId = value;
}
public String getCreater() {
return this.creater;
}
public void setCreater(String value) {
this.creater = value;
}
public Date getCreateDate() {
return this.createDate;
}
public void setCreateDate(Date value) {
this.createDate = value;
}
}
package pps.core.base.entity;
import java.io.Serializable;
public class QuerySelectBoxOutputView implements Serializable {
private Integer value;
private String name;
private String strValue;
public String getStrValue() {
return this.strValue;
}
public void setStrValue(String value) {
this.strValue = value;
}
public Integer getValue() {
return this.value;
}
public void setValue(Integer value) {
this.value = value;
}
public String getName() {
return this.name;
}
public void setName(String value) {
this.name = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import xstartup.annotation.XText;
import java.io.Serializable;
import java.util.Date;
@TableName("scada_environment_info")
public class ScadaEnvironmentInfoEnt implements Serializable {
@XText("主键")
@TableId(type = IdType.AUTO)
private String id;
@XText("环境名称")
@TableField
private String environmentInfoName;
@XText("ip地址")
@TableField
private String ipAddress;
@XText("用户名")
@TableField
private String userName;
@XText("密码")
@TableField
private String pwd;
@XText("keys")
@TableField
private String keys;
@XText("创建时间")
@TableField
private Date createTime;
@XText("创建人")
@TableField
private String createById;
@XText("创建人名称")
@TableField
private String createByName;
@XText("修改时间")
@TableField
private Date modifyTime;
@XText("修改人")
@TableField
private String modifyById;
@XText("修改人名称")
@TableField
private String modifyByName;
@XText("端口")
@TableField
private String port;
@XText("协议")
@TableField
private String agreement;
@XText("类型")
@TableField
private String type;
@XText("h环境类型")
@TableField
private String enType;
@XText("客户端ip")
@TableField
private String clientIp;
@XText("客户端端口")
@TableField
private String clientPort;
@XText("排序")
@TableField
private Integer sort;
public Integer getSort() {
return sort;
}
public void setSort(Integer sort) {
this.sort = sort;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getEnType() {
return enType;
}
public void setEnType(String enType) {
this.enType = enType;
}
public String getClientIp() {
return clientIp;
}
public void setClientIp(String clientIp) {
this.clientIp = clientIp;
}
public String getClientPort() {
return clientPort;
}
public void setClientPort(String clientPort) {
this.clientPort = clientPort;
}
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getEnvironmentInfoName() {
return this.environmentInfoName;
}
public void setEnvironmentInfoName(String value) {
this.environmentInfoName = value;
}
public String getIpAddress() {
return this.ipAddress;
}
public void setIpAddress(String value) {
this.ipAddress = value;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String value) {
this.userName = value;
}
public String getPwd() {
return this.pwd;
}
public void setPwd(String value) {
this.pwd = value;
}
public String getKeys() {
return this.keys;
}
public void setKeys(String value) {
this.keys = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
public String getPort() {
return this.port;
}
public void setPort(String value) {
this.port = value;
}
public String getAgreement() {
return this.agreement;
}
public void setAgreement(String value) {
this.agreement = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import xstartup.annotation.XText;
import java.io.Serializable;
import java.util.Date;
public class ScadaEnvironmentInfoView implements Serializable {
@XText("主键")
@TableField
private String id;
@XText("环境名称")
@TableField
private String environmentInfoName;
@XText("ip地址")
@TableField
private String ipAddress;
@XText("用户名")
@TableField
private String userName;
@XText("密码")
@TableField
private String pwd;
@XText("keys")
@TableField
private String keys;
@XText("创建时间")
@TableField
private Date createTime;
@XText("创建人")
@TableField
private String createById;
@XText("创建人名称")
@TableField
private String createByName;
@XText("修改时间")
@TableField
private Date modifyTime;
@XText("修改人")
@TableField
private String modifyById;
@XText("修改人名称")
@TableField
private String modifyByName;
@XText("端口")
@TableField
private String port;
@XText("协议")
@TableField
private String agreement;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getEnvironmentInfoName() {
return this.environmentInfoName;
}
public void setEnvironmentInfoName(String value) {
this.environmentInfoName = value;
}
public String getIpAddress() {
return this.ipAddress;
}
public void setIpAddress(String value) {
this.ipAddress = value;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String value) {
this.userName = value;
}
public String getPwd() {
return this.pwd;
}
public void setPwd(String value) {
this.pwd = value;
}
public String getKeys() {
return this.keys;
}
public void setKeys(String value) {
this.keys = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
public String getPort() {
return this.port;
}
public void setPort(String value) {
this.port = value;
}
public String getAgreement() {
return this.agreement;
}
public void setAgreement(String value) {
this.agreement = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import xstartup.annotation.XText;
import java.io.Serializable;
import java.util.Date;
@TableName("scada_gather_box")
public class ScadaGatherBoxEnt implements Serializable {
@XText("采集模型主键")
@TableId(type = IdType.AUTO)
private String id;
@XText("采集模板名称")
@TableField
private String gatherBoxName;
@XText("介质类型")
@TableField
private String mediaType;
@XText("模型状态")
@TableField
private Integer boxState;
@XText("创建时间")
@TableField
private Date createTime;
@XText("创建人")
@TableField
private String createById;
@XText("创建人名称")
@TableField
private String createByName;
@XText("修改时间")
@TableField
private Date modifyTime;
@XText("修改人")
@TableField
private String modifyById;
@XText("修改人名称")
@TableField
private String modifyByName;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getGatherBoxName() {
return this.gatherBoxName;
}
public void setGatherBoxName(String value) {
this.gatherBoxName = value;
}
public String getMediaType() {
return this.mediaType;
}
public void setMediaType(String value) {
this.mediaType = value;
}
public Integer getBoxState() {
return this.boxState;
}
public void setBoxState(Integer value) {
this.boxState = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import xstartup.annotation.XText;
import java.io.Serializable;
import java.util.Date;
@TableName("scada_gather_box_m_ou")
public class ScadaGatherBoxMOuEnt implements Serializable {
@XText("主键")
@TableId(type = IdType.AUTO)
private String id;
@XText("采集模型主键")
@TableField
private String gatherBoxId;
@XText("组织id")
@TableField
private String ouId;
@XText("组织名称")
@TableField
private String ouName;
@XText("是否删除 1.已删除,0.未删除")
@TableField
private Integer isDelete;
@XText("创建时间")
@TableField
private Date createTime;
@XText("创建人")
@TableField
private String createById;
@XText("创建人名称")
@TableField
private String createByName;
@XText("修改时间")
@TableField
private Date modifyTime;
@XText("修改人")
@TableField
private String modifyById;
@XText("修改人名称")
@TableField
private String modifyByName;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getGatherBoxId() {
return this.gatherBoxId;
}
public void setGatherBoxId(String value) {
this.gatherBoxId = value;
}
public String getOuId() {
return this.ouId;
}
public void setOuId(String value) {
this.ouId = value;
}
public String getOuName() {
return this.ouName;
}
public void setOuName(String value) {
this.ouName = value;
}
public Integer getIsDelete() {
return this.isDelete;
}
public void setIsDelete(Integer value) {
this.isDelete = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import xstartup.annotation.XText;
import java.io.Serializable;
import java.util.Date;
public class ScadaGatherBoxMOuView implements Serializable {
@XText("主键")
@TableField
private String id;
@XText("采集模型主键")
@TableField
private String gatherBoxId;
@XText("组织id")
@TableField
private String ouId;
@XText("组织名称")
@TableField
private String ouName;
@XText("是否删除 1.已删除,0.未删除")
@TableField
private Integer isDelete;
@XText("创建时间")
@TableField
private Date createTime;
@XText("创建人")
@TableField
private String createById;
@XText("创建人名称")
@TableField
private String createByName;
@XText("修改时间")
@TableField
private Date modifyTime;
@XText("修改人")
@TableField
private String modifyById;
@XText("修改人名称")
@TableField
private String modifyByName;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getGatherBoxId() {
return this.gatherBoxId;
}
public void setGatherBoxId(String value) {
this.gatherBoxId = value;
}
public String getOuId() {
return this.ouId;
}
public void setOuId(String value) {
this.ouId = value;
}
public String getOuName() {
return this.ouName;
}
public void setOuName(String value) {
this.ouName = value;
}
public Integer getIsDelete() {
return this.isDelete;
}
public void setIsDelete(Integer value) {
this.isDelete = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import xstartup.annotation.XText;
import java.io.Serializable;
import java.util.Date;
@TableName("scada_gather_box_m_station")
public class ScadaGatherBoxMStationEnt implements Serializable {
@XText("主键")
@TableId(type = IdType.AUTO)
private String id;
@XText("采集模型主键")
@TableField
private String gatherBoxId;
@XText("业务类型")
@TableField
private String businessType;
@XText("介质类型")
@TableField
private String mediaType;
@XText("组织id")
@TableField
private String ouId;
@XText("组织名称")
@TableField
private String ouName;
@XText("场站")
@TableField
private String stationId;
@XText("场站名称")
@TableField
private String stationName;
@XText("创建时间")
@TableField
private Date createTime;
@XText("创建人")
@TableField
private String createById;
@XText("创建人名称")
@TableField
private String createByName;
@XText("修改时间")
@TableField
private Date modifyTime;
@XText("修改人")
@TableField
private String modifyById;
@XText("修改人名称")
@TableField
private String modifyByName;
public String getMediaType() {
return mediaType;
}
public void setMediaType(String mediaType) {
this.mediaType = mediaType;
}
public String getBusinessType() {
return businessType;
}
public void setBusinessType(String businessType) {
this.businessType = businessType;
}
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getGatherBoxId() {
return this.gatherBoxId;
}
public void setGatherBoxId(String value) {
this.gatherBoxId = value;
}
public String getOuId() {
return ouId;
}
public void setOuId(String ouId) {
this.ouId = ouId;
}
public String getOuName() {
return ouName;
}
public void setOuName(String ouName) {
this.ouName = ouName;
}
public String getStationId() {
return this.stationId;
}
public void setStationId(String value) {
this.stationId = value;
}
public String getStationName() {
return this.stationName;
}
public void setStationName(String value) {
this.stationName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import xstartup.annotation.XText;
import java.io.Serializable;
import java.util.Date;
public class ScadaGatherBoxMStationView implements Serializable {
@XText("主键")
@TableField
private String id;
@XText("采集模型主键")
@TableField
private String gatherBoxId;
@XText("组织id")
@TableField
private String ouId;
@XText("组织名称")
@TableField
private String ouName;
@XText("场站")
@TableField
private String stationId;
@XText("场站名称")
@TableField
private String stationName;
@XText("创建时间")
@TableField
private Date createTime;
@XText("创建人")
@TableField
private String createById;
@XText("创建人名称")
@TableField
private String createByName;
@XText("修改时间")
@TableField
private Date modifyTime;
@XText("修改人")
@TableField
private String modifyById;
@XText("修改人名称")
@TableField
private String modifyByName;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getGatherBoxId() {
return this.gatherBoxId;
}
public void setGatherBoxId(String value) {
this.gatherBoxId = value;
}
public String getOuId() {
return ouId;
}
public void setOuId(String ouId) {
this.ouId = ouId;
}
public String getOuName() {
return ouName;
}
public void setOuName(String ouName) {
this.ouName = ouName;
}
public String getStationId() {
return this.stationId;
}
public void setStationId(String value) {
this.stationId = value;
}
public String getStationName() {
return this.stationName;
}
public void setStationName(String value) {
this.stationName = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import xstartup.annotation.XText;
import java.io.Serializable;
import java.util.Date;
@TableName("scada_gather_box_property")
public class ScadaGatherBoxPropertyEnt implements Serializable {
@XText("主键")
@TableId(type = IdType.AUTO)
private String id;
@XText("采集模板id")
@TableField
private String scadaGatherBoxId;
@XText("业务类型")
@TableField
private String businessType;
@XText("创建时间")
@TableField
private Date createTime;
@XText("创建人")
@TableField
private String createById;
@XText("创建人名称")
@TableField
private String createByName;
@XText("修改时间")
@TableField
private Date modifyTime;
@XText("修改人")
@TableField
private String modifyById;
@XText("修改人名称")
@TableField
private String modifyByName;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getScadaGatherBoxId() {
return this.scadaGatherBoxId;
}
public void setScadaGatherBoxId(String value) {
this.scadaGatherBoxId = value;
}
public String getBusinessType() {
return this.businessType;
}
public void setBusinessType(String value) {
this.businessType = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import xstartup.annotation.XText;
import java.io.Serializable;
import java.util.Date;
public class ScadaGatherBoxPropertyView implements Serializable {
@XText("主键")
@TableField
private String id;
@XText("采集模板id")
@TableField
private String scadaGatherBoxId;
@XText("业务类型")
@TableField
private String businessType;
@XText("创建时间")
@TableField
private Date createTime;
@XText("创建人")
@TableField
private String createById;
@XText("创建人名称")
@TableField
private String createByName;
@XText("修改时间")
@TableField
private Date modifyTime;
@XText("修改人")
@TableField
private String modifyById;
@XText("修改人名称")
@TableField
private String modifyByName;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getScadaGatherBoxId() {
return this.scadaGatherBoxId;
}
public void setScadaGatherBoxId(String value) {
this.scadaGatherBoxId = value;
}
public String getBusinessType() {
return this.businessType;
}
public void setBusinessType(String value) {
this.businessType = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import xstartup.annotation.XText;
import java.io.Serializable;
import java.util.Date;
@TableName("scada_gather_box_rel_detail")
public class ScadaGatherBoxRelDetailEnt implements Serializable {
@XText("主键")
@TableId(type = IdType.AUTO)
private String id;
@XText("scada采集模型关系配置主键")
@TableField
private String scadaGatherBoxRelId;
@XText("是否展示")
@TableField
private Boolean isShow;
@XText("来源表字段 ")
@TableField
private String tableColumn;
@XText("来源表字段描述")
@TableField
private String tableColumnDescription;
@XText("默认值表字段")
@TableField
private String defultColumn;
@XText("字段类型")
@TableField
private Integer boxDetailType;
@XText("创建时间")
@TableField
private Date createTime;
@XText("创建人")
@TableField
private String createById;
@XText("创建人名称")
@TableField
private String createByName;
@XText("修改时间")
@TableField
private Date modifyTime;
@XText("修改人")
@TableField
private String modifyById;
@XText("修改人名称")
@TableField
private String modifyByName;
@XText("查看展示")
@TableField
private Boolean checkShow;
@XText("排序序号")
@TableField
private Integer sort;
@XText("列宽")
@TableField
private Integer columnWidth;
public Boolean getCheckShow() {
return checkShow;
}
public void setCheckShow(Boolean checkShow) {
this.checkShow = checkShow;
}
public Integer getSort() {
return sort;
}
public void setSort(Integer sort) {
this.sort = sort;
}
public Integer getColumnWidth() {
return columnWidth;
}
public void setColumnWidth(Integer columnWidth) {
this.columnWidth = columnWidth;
}
public Boolean getIsShow() {
return isShow;
}
public void setIsShow(Boolean isShow) {
this.isShow = isShow;
}
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getScadaGatherBoxRelId() {
return this.scadaGatherBoxRelId;
}
public void setScadaGatherBoxRelId(String value) {
this.scadaGatherBoxRelId = value;
}
public String getTableColumn() {
return this.tableColumn;
}
public void setTableColumn(String value) {
this.tableColumn = value;
}
public String getTableColumnDescription() {
return this.tableColumnDescription;
}
public void setTableColumnDescription(String value) {
this.tableColumnDescription = value;
}
public String getDefultColumn() {
return this.defultColumn;
}
public void setDefultColumn(String value) {
this.defultColumn = value;
}
public Integer getBoxDetailType() {
return this.boxDetailType;
}
public void setBoxDetailType(Integer value) {
this.boxDetailType = value;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date value) {
this.createTime = value;
}
public String getCreateById() {
return this.createById;
}
public void setCreateById(String value) {
this.createById = value;
}
public String getCreateByName() {
return this.createByName;
}
public void setCreateByName(String value) {
this.createByName = value;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
public String getModifyById() {
return this.modifyById;
}
public void setModifyById(String value) {
this.modifyById = value;
}
public String getModifyByName() {
return this.modifyByName;
}
public void setModifyByName(String value) {
this.modifyByName = value;
}
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.GasDayPlanConfigEnt;
@Repository(value = "pps.core.base.mapper.GasDayPlanConfigMapper")
public interface GasDayPlanConfigMapper extends BaseMapper<GasDayPlanConfigEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.GasDayPlanConfigView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.GasDayPlanConfigViewMapper")
public interface GasDayPlanConfigViewMapper {
GasDayPlanConfigView selectOne(GasDayPlanConfigView record);
List<GasDayPlanConfigView> selectList(GasDayPlanConfigView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.GasUploadDayPlanConfigEnt;
@Repository(value = "pps.core.base.mapper.GasUploadDayPlanConfigMapper")
public interface GasUploadDayPlanConfigMapper extends BaseMapper<GasUploadDayPlanConfigEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.GasUploadDayPlanConfigView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.GasUploadDayPlanConfigViewMapper")
public interface GasUploadDayPlanConfigViewMapper {
GasUploadDayPlanConfigView selectOne(GasUploadDayPlanConfigView record);
List<GasUploadDayPlanConfigView> selectList(GasUploadDayPlanConfigView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringCustomerEnt;
@Repository(value = "pps.core.base.mapper.MeteringCustomerMapper")
public interface MeteringCustomerMapper extends BaseMapper<MeteringCustomerEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringCustomerView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.MeteringCustomerViewMapper")
public interface MeteringCustomerViewMapper {
MeteringCustomerView selectOne(MeteringCustomerView record);
List<MeteringCustomerView> selectList(MeteringCustomerView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringDictionaryEnt;
@Repository(value = "pps.core.base.mapper.MeteringDictionaryMapper")
public interface MeteringDictionaryMapper extends BaseMapper<MeteringDictionaryEnt> {
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringDictionaryRelEnt;
@Repository(value = "pps.core.base.mapper.MeteringDictionaryRelMapper")
public interface MeteringDictionaryRelMapper extends BaseMapper<MeteringDictionaryRelEnt> {
}
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