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 xstartup.annotation.XText;
import java.io.Serializable;
import java.util.Date;
@TableName("metering_equipment_ledger")
public class MeteringEquipmentLedgerEnt implements Serializable {
@XText("id")
@TableField
private Integer id;
@XText("管线ID")
@TableField
private String pipelineId;
@XText("场站ID")
@TableField
private String stationId;
@XText("客户ID")
@TableField
private String customerId;
@XText("二级单位ID")
@TableField
private String subunitId;
@XText("企业ID")
@TableField
private String enterprieId;
@XText("设备ID")
@TableField
private Integer equipmentId;
@XText("设备类型ID")
@TableField
private Integer equipmentTypeId;
@XText("工艺位置")
@TableField
private String technologyLocation;
@XText("工艺编号")
@TableField
private String technologyNumber;
@XText("PPS设备ID")
@TableField
private String ppsEquipmentId;
@XText("PPS工艺编号")
@TableField
private String ppsNumber;
@XText("生产产家ID")
@TableField
private Integer productionFactoryId;
@XText("出厂编号")
@TableField
private String productionNumber;
@XText("出厂日期")
@TableField
private Date productionDate;
@XText("规格型号")
@TableField
private Integer specificationsId;
@XText("投运日期")
@TableField
private Date commissioningDate;
@XText("用途ID")
@TableField
private Integer usageId;
@XText("用途1ID")
@TableField
private Integer usage1Id;
@XText("资产所属ID")
@TableField
private Integer assetBelongsId;
@XText("资产管理权")
@TableField
private Integer authorityId;
@XText("使用状态ID")
@TableField
private Integer usageStateId;
@XText("资产单位")
@TableField
private String assetUint;
@XText("检定周期")
@TableField
private Integer vcylce;
@XText("介质类型")
@TableField
private String mediumType;
@XText("流量计口径")
@TableField
private Integer caliber;
@XText("压力等级")
@TableField
private Integer pressureLevel;
@XText("准确度")
@TableField
private Integer accuracy;
@XText("最小流量")
@TableField
private Integer minflow;
@XText("最大流量")
@TableField
private Integer maxflow;
@XText("分界流量")
@TableField
private Integer demarcationflow;
@XText("罐号")
@TableField
private String potNumber;
@XText("容积")
@TableField
private Integer volume;
@XText("储罐类型")
@TableField
private Integer type;
@XText("储存介质品号")
@TableField
private Integer storageMedium;
@XText("备注")
@TableField
private String bak;
@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 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 getCustomerId() {
return this.customerId;
}
public void setCustomerId(String value) {
this.customerId = value;
}
public String getSubunitId() {
return this.subunitId;
}
public void setSubunitId(String value) {
this.subunitId = value;
}
public String getEnterprieId() {
return this.enterprieId;
}
public void setEnterprieId(String value) {
this.enterprieId = value;
}
public Integer getEquipmentId() {
return this.equipmentId;
}
public void setEquipmentId(Integer value) {
this.equipmentId = value;
}
public Integer getEquipmentTypeId() {
return this.equipmentTypeId;
}
public void setEquipmentTypeId(Integer value) {
this.equipmentTypeId = value;
}
public String getTechnologyLocation() {
return this.technologyLocation;
}
public void setTechnologyLocation(String value) {
this.technologyLocation = value;
}
public String getTechnologyNumber() {
return this.technologyNumber;
}
public void setTechnologyNumber(String value) {
this.technologyNumber = value;
}
public String getPpsEquipmentId() {
return this.ppsEquipmentId;
}
public void setPpsEquipmentId(String value) {
this.ppsEquipmentId = value;
}
public String getPpsNumber() {
return this.ppsNumber;
}
public void setPpsNumber(String value) {
this.ppsNumber = value;
}
public Integer getProductionFactoryId() {
return this.productionFactoryId;
}
public void setProductionFactoryId(Integer value) {
this.productionFactoryId = value;
}
public String getProductionNumber() {
return this.productionNumber;
}
public void setProductionNumber(String value) {
this.productionNumber = value;
}
public Date getProductionDate() {
return this.productionDate;
}
public void setProductionDate(Date value) {
this.productionDate = value;
}
public Integer getSpecificationsId() {
return this.specificationsId;
}
public void setSpecificationsId(Integer value) {
this.specificationsId = value;
}
public Date getCommissioningDate() {
return this.commissioningDate;
}
public void setCommissioningDate(Date value) {
this.commissioningDate = value;
}
public Integer getUsageId() {
return this.usageId;
}
public void setUsageId(Integer value) {
this.usageId = value;
}
public Integer getUsage1Id() {
return this.usage1Id;
}
public void setUsage1Id(Integer value) {
this.usage1Id = value;
}
public Integer getAssetBelongsId() {
return this.assetBelongsId;
}
public void setAssetBelongsId(Integer value) {
this.assetBelongsId = value;
}
public Integer getAuthorityId() {
return this.authorityId;
}
public void setAuthorityId(Integer value) {
this.authorityId = value;
}
public Integer getUsageStateId() {
return this.usageStateId;
}
public void setUsageStateId(Integer value) {
this.usageStateId = value;
}
public String getAssetUint() {
return this.assetUint;
}
public void setAssetUint(String value) {
this.assetUint = value;
}
public Integer getVcylce() {
return this.vcylce;
}
public void setVcylce(Integer value) {
this.vcylce = value;
}
public String getMediumType() {
return this.mediumType;
}
public void setMediumType(String value) {
this.mediumType = value;
}
public Integer getCaliber() {
return this.caliber;
}
public void setCaliber(Integer value) {
this.caliber = value;
}
public Integer getPressureLevel() {
return this.pressureLevel;
}
public void setPressureLevel(Integer value) {
this.pressureLevel = value;
}
public Integer getAccuracy() {
return this.accuracy;
}
public void setAccuracy(Integer value) {
this.accuracy = value;
}
public Integer getMinflow() {
return this.minflow;
}
public void setMinflow(Integer value) {
this.minflow = value;
}
public Integer getMaxflow() {
return this.maxflow;
}
public void setMaxflow(Integer value) {
this.maxflow = value;
}
public Integer getDemarcationflow() {
return this.demarcationflow;
}
public void setDemarcationflow(Integer value) {
this.demarcationflow = value;
}
public String getPotNumber() {
return this.potNumber;
}
public void setPotNumber(String value) {
this.potNumber = value;
}
public Integer getVolume() {
return this.volume;
}
public void setVolume(Integer value) {
this.volume = value;
}
public Integer getType() {
return this.type;
}
public void setType(Integer value) {
this.type = value;
}
public Integer getStorageMedium() {
return this.storageMedium;
}
public void setStorageMedium(Integer value) {
this.storageMedium = value;
}
public String getBak() {
return this.bak;
}
public void setBak(String value) {
this.bak = 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 MeteringEquipmentLedgerView implements Serializable {
@XText("id")
@TableField
private Integer id;
@XText("管线ID")
@TableField
private String pipelineId;
@XText("场站ID")
@TableField
private String stationId;
@XText("客户ID")
@TableField
private String customerId;
@XText("二级单位ID")
@TableField
private String subunitId;
@XText("企业ID")
@TableField
private String enterprieId;
@XText("设备ID")
@TableField
private Integer equipmentId;
@XText("设备类型ID")
@TableField
private Integer equipmentTypeId;
@XText("工艺位置")
@TableField
private String technologyLocation;
@XText("工艺编号")
@TableField
private String technologyNumber;
@XText("PPS设备ID")
@TableField
private String ppsEquipmentId;
@XText("PPS工艺编号")
@TableField
private String ppsNumber;
@XText("生产产家ID")
@TableField
private Integer productionFactoryId;
@XText("出厂编号")
@TableField
private String productionNumber;
@XText("出厂日期")
@TableField
private Date productionDate;
@XText("规格型号")
@TableField
private Integer specificationsId;
@XText("投运日期")
@TableField
private Date commissioningDate;
@XText("用途ID")
@TableField
private Integer usageId;
@XText("用途1ID")
@TableField
private Integer usage1Id;
@XText("资产所属ID")
@TableField
private Integer assetBelongsId;
@XText("资产管理权")
@TableField
private Integer authorityId;
@XText("使用状态ID")
@TableField
private Integer usageStateId;
@XText("资产单位")
@TableField
private String assetUint;
@XText("检定周期")
@TableField
private Integer vcylce;
@XText("介质类型")
@TableField
private String mediumType;
@XText("流量计口径")
@TableField
private Integer caliber;
@XText("压力等级")
@TableField
private Integer pressureLevel;
@XText("准确度")
@TableField
private Integer accuracy;
@XText("最小流量")
@TableField
private Integer minflow;
@XText("最大流量")
@TableField
private Integer maxflow;
@XText("分界流量")
@TableField
private Integer demarcationflow;
@XText("罐号")
@TableField
private String potNumber;
@XText("容积")
@TableField
private Integer volume;
@XText("储罐类型")
@TableField
private Integer type;
@XText("储存介质品号")
@TableField
private Integer storageMedium;
@XText("备注")
@TableField
private String bak;
@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 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 getCustomerId() {
return this.customerId;
}
public void setCustomerId(String value) {
this.customerId = value;
}
public String getSubunitId() {
return this.subunitId;
}
public void setSubunitId(String value) {
this.subunitId = value;
}
public String getEnterprieId() {
return this.enterprieId;
}
public void setEnterprieId(String value) {
this.enterprieId = value;
}
public Integer getEquipmentId() {
return this.equipmentId;
}
public void setEquipmentId(Integer value) {
this.equipmentId = value;
}
public Integer getEquipmentTypeId() {
return this.equipmentTypeId;
}
public void setEquipmentTypeId(Integer value) {
this.equipmentTypeId = value;
}
public String getTechnologyLocation() {
return this.technologyLocation;
}
public void setTechnologyLocation(String value) {
this.technologyLocation = value;
}
public String getTechnologyNumber() {
return this.technologyNumber;
}
public void setTechnologyNumber(String value) {
this.technologyNumber = value;
}
public String getPpsEquipmentId() {
return this.ppsEquipmentId;
}
public void setPpsEquipmentId(String value) {
this.ppsEquipmentId = value;
}
public String getPpsNumber() {
return this.ppsNumber;
}
public void setPpsNumber(String value) {
this.ppsNumber = value;
}
public Integer getProductionFactoryId() {
return this.productionFactoryId;
}
public void setProductionFactoryId(Integer value) {
this.productionFactoryId = value;
}
public String getProductionNumber() {
return this.productionNumber;
}
public void setProductionNumber(String value) {
this.productionNumber = value;
}
public Date getProductionDate() {
return this.productionDate;
}
public void setProductionDate(Date value) {
this.productionDate = value;
}
public Integer getSpecificationsId() {
return this.specificationsId;
}
public void setSpecificationsId(Integer value) {
this.specificationsId = value;
}
public Date getCommissioningDate() {
return this.commissioningDate;
}
public void setCommissioningDate(Date value) {
this.commissioningDate = value;
}
public Integer getUsageId() {
return this.usageId;
}
public void setUsageId(Integer value) {
this.usageId = value;
}
public Integer getUsage1Id() {
return this.usage1Id;
}
public void setUsage1Id(Integer value) {
this.usage1Id = value;
}
public Integer getAssetBelongsId() {
return this.assetBelongsId;
}
public void setAssetBelongsId(Integer value) {
this.assetBelongsId = value;
}
public Integer getAuthorityId() {
return this.authorityId;
}
public void setAuthorityId(Integer value) {
this.authorityId = value;
}
public Integer getUsageStateId() {
return this.usageStateId;
}
public void setUsageStateId(Integer value) {
this.usageStateId = value;
}
public String getAssetUint() {
return this.assetUint;
}
public void setAssetUint(String value) {
this.assetUint = value;
}
public Integer getVcylce() {
return this.vcylce;
}
public void setVcylce(Integer value) {
this.vcylce = value;
}
public String getMediumType() {
return this.mediumType;
}
public void setMediumType(String value) {
this.mediumType = value;
}
public Integer getCaliber() {
return this.caliber;
}
public void setCaliber(Integer value) {
this.caliber = value;
}
public Integer getPressureLevel() {
return this.pressureLevel;
}
public void setPressureLevel(Integer value) {
this.pressureLevel = value;
}
public Integer getAccuracy() {
return this.accuracy;
}
public void setAccuracy(Integer value) {
this.accuracy = value;
}
public Integer getMinflow() {
return this.minflow;
}
public void setMinflow(Integer value) {
this.minflow = value;
}
public Integer getMaxflow() {
return this.maxflow;
}
public void setMaxflow(Integer value) {
this.maxflow = value;
}
public Integer getDemarcationflow() {
return this.demarcationflow;
}
public void setDemarcationflow(Integer value) {
this.demarcationflow = value;
}
public String getPotNumber() {
return this.potNumber;
}
public void setPotNumber(String value) {
this.potNumber = value;
}
public Integer getVolume() {
return this.volume;
}
public void setVolume(Integer value) {
this.volume = value;
}
public Integer getType() {
return this.type;
}
public void setType(Integer value) {
this.type = value;
}
public Integer getStorageMedium() {
return this.storageMedium;
}
public void setStorageMedium(Integer value) {
this.storageMedium = value;
}
public String getBak() {
return this.bak;
}
public void setBak(String value) {
this.bak = 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 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.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import xstartup.annotation.XText;
import java.io.Serializable;
import java.util.Date;
public class ScadaGatherBoxRelDetailView implements Serializable {
@XText("主键")
@TableField
private String id;
@XText("scada采集模型关系配置主键")
@TableField
private String scadaGatherBoxRelId;
@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 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.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")
public class ScadaGatherBoxRelEnt implements Serializable {
@XText("主键")
@TableId(type = IdType.AUTO)
private String id;
@XText("采集模型主键")
@TableField
private String gatherBoxId;
@XText("数据来源业务模块 ")
@TableField
private String businessModule;
@XText("数据来源表名称")
@TableField
private String tableName;
@XText("默认值存储业务模块")
@TableField
private String defultBusinessModule;
@XText("默认值表名称")
@TableField
private String defultTableName;
@XText("默认值表日期时间字段")
@TableField
private String defultDataColumn;
@XText("默认值表同步规则")
@TableField
private String syncRule;
@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 title;
@XText("业务类型")
@TableField
private String businessType;
@XText("类型 1-conf表;2-视图")
@TableField
private String boxRelType;
@XText("定时采集")
@TableField
private Boolean timerGather;
@XText("排序")
@TableField
private Integer sort;
public Integer getSort() {
return sort;
}
public void setSort(Integer sort) {
this.sort = sort;
}
public Boolean getTimerGather() {
return timerGather;
}
public void setTimerGather(Boolean timerGather) {
this.timerGather = timerGather;
}
public String getBusinessType() {
return businessType;
}
public void setBusinessType(String businessType) {
this.businessType = businessType;
}
public String getBoxRelType() {
return boxRelType;
}
public void setBoxRelType(String boxRelType) {
this.boxRelType = boxRelType;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
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 getBusinessModule() {
return this.businessModule;
}
public void setBusinessModule(String value) {
this.businessModule = value;
}
public String getTableName() {
return this.tableName;
}
public void setTableName(String value) {
this.tableName = value;
}
public String getDefultBusinessModule() {
return this.defultBusinessModule;
}
public void setDefultBusinessModule(String value) {
this.defultBusinessModule = value;
}
public String getDefultTableName() {
return this.defultTableName;
}
public void setDefultTableName(String value) {
this.defultTableName = value;
}
public String getDefultDataColumn() {
return this.defultDataColumn;
}
public void setDefultDataColumn(String value) {
this.defultDataColumn = value;
}
public String getSyncRule() {
return this.syncRule;
}
public void setSyncRule(String value) {
this.syncRule = 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> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringDictionaryRelView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.MeteringDictionaryRelViewMapper")
public interface MeteringDictionaryRelViewMapper {
MeteringDictionaryRelView selectOne(MeteringDictionaryRelView record);
List<MeteringDictionaryRelView> selectList(MeteringDictionaryRelView record);
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringDictionaryView;
import pps.core.base.entity.QuerySelectBoxOutputView;
import pps.core.base.service.data.metering_dictionary.QuerySelectBoxInput;
import pps.core.base.service.data.metering_dictionary.QuerySelectBoxStationPipelineInput;
import java.util.List;
@Repository(value = "pps.core.base.mapper.MeteringDictionaryViewMapper")
public interface MeteringDictionaryViewMapper {
MeteringDictionaryView selectOne(MeteringDictionaryView record);
List<MeteringDictionaryView> selectList(MeteringDictionaryView record);
List<QuerySelectBoxOutputView> selectEnterprieNameSelectBox();
List<QuerySelectBoxOutputView> selectSubUnitNameSelectBox(QuerySelectBoxInput input);
List<QuerySelectBoxOutputView> selectStationNameSelectBox(QuerySelectBoxInput input);
List<QuerySelectBoxOutputView> selectPipeLineNameSelectBox(QuerySelectBoxInput input);
List<QuerySelectBoxOutputView> selectCustomerNameSelectBox(QuerySelectBoxStationPipelineInput input);
List<QuerySelectBoxOutputView> selectDictionarySelectBox(QuerySelectBoxInput input);
List<QuerySelectBoxOutputView> selectDictionaryRelSelectBox(QuerySelectBoxInput input);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringEnterprieEnt;
@Repository(value = "pps.core.base.mapper.MeteringEnterprieMapper")
public interface MeteringEnterprieMapper extends BaseMapper<MeteringEnterprieEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringEnterprieView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.MeteringEnterprieViewMapper")
public interface MeteringEnterprieViewMapper {
MeteringEnterprieView selectOne(MeteringEnterprieView record);
List<MeteringEnterprieView> selectList(MeteringEnterprieView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringEquipmentLedgerEnt;
@Repository(value = "pps.core.base.mapper.MeteringEquipmentLedgerMapper")
public interface MeteringEquipmentLedgerMapper extends BaseMapper<MeteringEquipmentLedgerEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringEquipmentLedgerView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.MeteringEquipmentLedgerViewMapper")
public interface MeteringEquipmentLedgerViewMapper {
MeteringEquipmentLedgerView selectOne(MeteringEquipmentLedgerView record);
List<MeteringEquipmentLedgerView> selectList(MeteringEquipmentLedgerView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringNewCustomerNameEnt;
@Repository(value = "pps.core.base.mapper.MeteringNewCustomerNameMapper")
public interface MeteringNewCustomerNameMapper extends BaseMapper<MeteringNewCustomerNameEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringNewCustomerNameView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.MeteringNewCustomerNameViewMapper")
public interface MeteringNewCustomerNameViewMapper {
MeteringNewCustomerNameView selectOne(MeteringNewCustomerNameView record);
List<MeteringNewCustomerNameView> selectList(MeteringNewCustomerNameView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringParticipationEnt;
@Repository(value = "pps.core.base.mapper.MeteringParticipationMapper")
public interface MeteringParticipationMapper extends BaseMapper<MeteringParticipationEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringParticipationView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.MeteringParticipationViewMapper")
public interface MeteringParticipationViewMapper {
MeteringParticipationView selectOne(MeteringParticipationView record);
List<MeteringParticipationView> selectList(MeteringParticipationView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringPipeStationCustomerRelEnt;
@Repository(value = "pps.core.base.mapper.MeteringPipeStationCustomerRelMapper")
public interface MeteringPipeStationCustomerRelMapper extends BaseMapper<MeteringPipeStationCustomerRelEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringPipeStationCustomerRelView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.MeteringPipeStationCustomerRelViewMapper")
public interface MeteringPipeStationCustomerRelViewMapper {
MeteringPipeStationCustomerRelView selectOne(MeteringPipeStationCustomerRelView record);
List<MeteringPipeStationCustomerRelView> selectList(MeteringPipeStationCustomerRelView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringVerficationInfoEnt;
@Repository(value = "pps.core.base.mapper.MeteringVerficationInfoMapper")
public interface MeteringVerficationInfoMapper extends BaseMapper<MeteringVerficationInfoEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.MeteringVerficationInfoView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.MeteringVerficationInfoViewMapper")
public interface MeteringVerficationInfoViewMapper {
MeteringVerficationInfoView selectOne(MeteringVerficationInfoView record);
List<MeteringVerficationInfoView> selectList(MeteringVerficationInfoView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaEnvironmentInfoEnt;
@Repository(value = "pps.core.base.mapper.ScadaEnvironmentInfoMapper")
public interface ScadaEnvironmentInfoMapper extends BaseMapper<ScadaEnvironmentInfoEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaEnvironmentInfoView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.ScadaEnvironmentInfoViewMapper")
public interface ScadaEnvironmentInfoViewMapper {
ScadaEnvironmentInfoView selectOne(ScadaEnvironmentInfoView record);
List<ScadaEnvironmentInfoView> selectList(ScadaEnvironmentInfoView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherBoxMOuEnt;
@Repository(value = "pps.core.base.mapper.ScadaGatherBoxMOuMapper")
public interface ScadaGatherBoxMOuMapper extends BaseMapper<ScadaGatherBoxMOuEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherBoxMOuView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.ScadaGatherBoxMOuViewMapper")
public interface ScadaGatherBoxMOuViewMapper {
ScadaGatherBoxMOuView selectOne(ScadaGatherBoxMOuView record);
List<ScadaGatherBoxMOuView> selectList(ScadaGatherBoxMOuView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherBoxMStationEnt;
@Repository(value = "pps.core.base.mapper.ScadaGatherBoxMStationMapper")
public interface ScadaGatherBoxMStationMapper extends BaseMapper<ScadaGatherBoxMStationEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherBoxMStationView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.ScadaGatherBoxMStationViewMapper")
public interface ScadaGatherBoxMStationViewMapper {
ScadaGatherBoxMStationView selectOne(ScadaGatherBoxMStationView record);
List<ScadaGatherBoxMStationView> selectList(ScadaGatherBoxMStationView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherBoxEnt;
@Repository(value = "pps.core.base.mapper.ScadaGatherBoxMapper")
public interface ScadaGatherBoxMapper extends BaseMapper<ScadaGatherBoxEnt> {
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherBoxPropertyEnt;
@Repository(value = "pps.core.base.mapper.ScadaGatherBoxPropertyMapper")
public interface ScadaGatherBoxPropertyMapper extends BaseMapper<ScadaGatherBoxPropertyEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherBoxPropertyView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.ScadaGatherBoxPropertyViewMapper")
public interface ScadaGatherBoxPropertyViewMapper {
ScadaGatherBoxPropertyView selectOne(ScadaGatherBoxPropertyView record);
List<ScadaGatherBoxPropertyView> selectList(ScadaGatherBoxPropertyView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherBoxRelDetailEnt;
@Repository(value = "pps.core.base.mapper.ScadaGatherBoxRelDetailMapper")
public interface ScadaGatherBoxRelDetailMapper extends BaseMapper<ScadaGatherBoxRelDetailEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherBoxRelDetailView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.ScadaGatherBoxRelDetailViewMapper")
public interface ScadaGatherBoxRelDetailViewMapper {
ScadaGatherBoxRelDetailView selectOne(ScadaGatherBoxRelDetailView record);
List<ScadaGatherBoxRelDetailView> selectList(ScadaGatherBoxRelDetailView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherBoxRelEnt;
@Repository(value = "pps.core.base.mapper.ScadaGatherBoxRelMapper")
public interface ScadaGatherBoxRelMapper extends BaseMapper<ScadaGatherBoxRelEnt> {
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pps.core.base.mapper.GasDayPlanConfigViewMapper">
<resultMap id="BaseResultMap" type="pps.core.base.entity.GasDayPlanConfigView">
<id column="id" property="id" jdbcType="VARCHAR"/>
<result column="a_ou_id" property="aOuId" jdbcType="VARCHAR"/>
<result column="a_ou_name" property="aOuName" jdbcType="VARCHAR"/>
<result column="m_ou_id" property="mOuId" jdbcType="VARCHAR"/>
<result column="m_ou_name" property="mOuName" jdbcType="VARCHAR"/>
<result column="pipeline_id" property="pipelineId" jdbcType="VARCHAR"/>
<result column="pipeline_name" property="pipelineName" jdbcType="VARCHAR"/>
<result column="pipeline_display_name" property="pipelineDisplayName" jdbcType="VARCHAR"/>
<result column="station_id" property="stationId" jdbcType="VARCHAR"/>
<result column="station_name" property="stationName" jdbcType="VARCHAR"/>
<result column="customer_id" property="customerId" jdbcType="VARCHAR"/>
<result column="customer_name" property="customerName" jdbcType="VARCHAR"/>
<result column="shipper_id" property="shipperId" jdbcType="VARCHAR"/>
<result column="shipper_name" property="shipperName" jdbcType="VARCHAR"/>
<result column="sort" property="sort" jdbcType="INTEGER"/>
<result column="day_plan_did" property="dayPlanDid" jdbcType="INTEGER"/>
<result column="remark_did" property="remarkDid" jdbcType="INTEGER"/>
</resultMap>
<sql id="Base_Column_List">
id
,
a_ou_id,
a_ou_name,
m_ou_id,
m_ou_name,
pipeline_id,
pipeline_name,
pipeline_display_name,
station_id,
station_name,
customer_id,
customer_name,
shipper_id,
shipper_name,
sort,
day_plan_did,
remark_did
</sql>
<select id="selectOne" parameterType="pps.core.base.entity.GasDayPlanConfigView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from gas_day_plan_config
where
id=#{id}
</select>
<select id="selectList" parameterType="pps.core.base.entity.GasDayPlanConfigView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from gas_day_plan_config
where
id=#{id}
</select>
</mapper>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pps.core.base.mapper.GasUploadDayPlanConfigViewMapper">
<resultMap id="BaseResultMap" type="pps.core.base.entity.GasUploadDayPlanConfigView">
<id column="id" property="id" jdbcType="VARCHAR"/>
<result column="m_ou_id" property="mOuId" jdbcType="VARCHAR"/>
<result column="m_ou_name" property="mOuName" jdbcType="VARCHAR"/>
<result column="pipeline_id" property="pipelineId" jdbcType="VARCHAR"/>
<result column="pipeline_name" property="pipelineName" jdbcType="VARCHAR"/>
<result column="pipeline_display_name" property="pipelineDisplayName" jdbcType="VARCHAR"/>
<result column="station_id" property="stationId" jdbcType="VARCHAR"/>
<result column="station_name" property="stationName" jdbcType="VARCHAR"/>
<result column="shipper_id" property="shipperId" jdbcType="VARCHAR"/>
<result column="shipper_name" property="shipperName" jdbcType="VARCHAR"/>
<result column="source_id" property="sourceId" jdbcType="VARCHAR"/>
<result column="source_name" property="sourceName" jdbcType="VARCHAR"/>
<result column="sort" property="sort" jdbcType="INTEGER"/>
<result column="day_plan_did" property="dayPlanDid" jdbcType="INTEGER"/>
<result column="remark_did" property="remarkDid" jdbcType="INTEGER"/>
</resultMap>
<sql id="Base_Column_List">
id
,
m_ou_id,
m_ou_name,
pipeline_id,
pipeline_name,
pipeline_display_name,
station_id,
station_name,
shipper_id,
shipper_name,
source_id,
source_name,
sort,
day_plan_did,
remark_did
</sql>
<select id="selectOne" parameterType="pps.core.base.entity.GasUploadDayPlanConfigView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from gas_upload_day_plan_config
where
id=#{id}
</select>
<select id="selectList" parameterType="pps.core.base.entity.GasUploadDayPlanConfigView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from gas_upload_day_plan_config
where
id=#{id}
</select>
</mapper>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pps.core.base.mapper.MeteringCustomerViewMapper">
<resultMap id="BaseResultMap" type="pps.core.base.entity.MeteringCustomerView">
<result column="id" property="id" jdbcType="VARCHAR"/>
<result column="customer_name" property="customerName" jdbcType="VARCHAR"/>
<result column="customer_full_name" property="customerFullName" jdbcType="VARCHAR"/>
<result column="create_date" property="createDate" jdbcType="TIMESTAMP"/>
</resultMap>
<sql id="Base_Column_List">
id
,
customer_name,
customer_full_name,
create_date
</sql>
<select id="selectOne" parameterType="pps.core.base.entity.MeteringCustomerView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_customer
where
id=#{id}
</select>
<select id="selectList" parameterType="pps.core.base.entity.MeteringCustomerView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_customer
where
id=#{id}
</select>
</mapper>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pps.core.base.mapper.MeteringDictionaryRelViewMapper">
<resultMap id="BaseResultMap" type="pps.core.base.entity.MeteringDictionaryRelView">
<result column="id" property="id" jdbcType="INTEGER"/>
<result column="dic_id" property="dicId" jdbcType="INTEGER"/>
<result column="parent_id" property="parentId" jdbcType="INTEGER"/>
<result column="create_date" property="createDate" jdbcType="TIMESTAMP"/>
</resultMap>
<sql id="Base_Column_List">
id
,
dic_id,
parent_id,
create_date
</sql>
<select id="selectOne" parameterType="pps.core.base.entity.MeteringDictionaryRelView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_dictionary_rel
where
id=#{id}
</select>
<select id="selectList" parameterType="pps.core.base.entity.MeteringDictionaryRelView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_dictionary_rel
where
id=#{id}
</select>
</mapper>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pps.core.base.mapper.MeteringDictionaryViewMapper">
<resultMap id="BaseResultMap" type="pps.core.base.entity.MeteringDictionaryView">
<result column="id" property="id" jdbcType="INTEGER"/>
<result column="sort" property="sort" jdbcType="INTEGER"/>
<result column="d_name" property="dName" jdbcType="VARCHAR"/>
<result column="parent_id" property="parentId" jdbcType="INTEGER"/>
<result column="is_leaf" property="isLeaf" jdbcType="INTEGER"/>
<result column="change_dname" property="changeDname" jdbcType="VARCHAR"/>
<result column="change_dname_his" property="changeDnameHis" jdbcType="VARCHAR"/>
<result column="examine_status" property="examineStatus" jdbcType="INTEGER"/>
<result column="workflow_id" property="workflowId" jdbcType="VARCHAR"/>
<result column="is_delete" property="isDelete" jdbcType="INTEGER"/>
<result column="create_by_id" property="createById" jdbcType="VARCHAR"/>
<result column="create_by_name" property="createByName" jdbcType="VARCHAR"/>
<result column="create_time" property="createTime" jdbcType="TIMESTAMP"/>
<result column="bak" property="bak" jdbcType="VARCHAR"/>
</resultMap>
<sql id="Base_Column_List">
id
,
sort,
d_name,
parent_id,
is_leaf,
change_dname,
change_dname_his,
examine_status,
workflow_id,
is_delete,
create_by_id,
create_by_name,
create_time,
bak
</sql>
<select id="selectOne" parameterType="pps.core.base.entity.MeteringDictionaryView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_dictionary
where
id=#{id}
</select>
<select id="selectList" parameterType="pps.core.base.entity.MeteringDictionaryView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_dictionary
where
id=#{id}
</select>
<select id="selectEnterprieNameSelectBox"
resultType="pps.core.base.entity.QuerySelectBoxOutputView">
select so.id str_value, so.ou_name name
from sys_organization so
join metering_enterprie me on me.id = so.id
where so.ou_level = 'REGION_FIRM'
</select>
<select id="selectSubUnitNameSelectBox"
parameterType="pps.core.base.service.data.metering_dictionary.QuerySelectBoxInput"
resultType="pps.core.base.entity.QuerySelectBoxOutputView">
select so.id str_value,so.ou_name name from sys_organization so
left join sys_organization_rel rel on rel.ou_id=so.id
where so.ou_level ='ADMINISTRATIVE'
<if test="strValue != null and strValue != ''">
and rel.parent_ou_id=#{strValue}
</if>
</select>
<select id="selectStationNameSelectBox"
parameterType="pps.core.base.service.data.metering_dictionary.QuerySelectBoxInput"
resultType="pps.core.base.entity.QuerySelectBoxOutputView">
select distinct st.id strValue,st.station_name name from base_station st
left join base_station_ou_rel rel on rel.station_id =st.id
where rel.ou_id in(
select so.id from sys_organization so
left join sys_organization_rel rel on rel.ou_id=so.id
<if test="strValue != null and strValue != ''">
where rel.parent_ou_id=#{strValue}
</if>
)
</select>
<select id="selectPipeLineNameSelectBox"
parameterType="pps.core.base.service.data.metering_dictionary.QuerySelectBoxInput"
resultType="pps.core.base.entity.QuerySelectBoxOutputView">
SELECT DISTINCT bp.id strValue,bp.pipeline_name name FROM base_pipeline bp
INNER JOIN base_pipeline_segment_rel bpsr ON bp.id = bpsr.pipeline_id
INNER JOIN base_segment bs ON bpsr.segment_id = bs.id
<if test="strValue != null and strValue != ''">
WHERE bs.start_station_id = #{strValue} OR bs.end_station_id = #{strValue}
</if>
</select>
<select id="selectCustomerNameSelectBox"
parameterType="pps.core.base.service.data.metering_dictionary.QuerySelectBoxStationPipelineInput"
resultType="pps.core.base.entity.QuerySelectBoxOutputView">
SELECT V.client_id strValue,
CASE WHEN N.id IS NOT NULL THEN N.customer_name ELSE V.client_short_ame END name
FROM view_metering_station_customer V
LEFT JOIN metering_new_customer_name N ON V.client_id = N.id
WHERE 1=1
<if test="station != null and station != ''">
and V.station_id =#{station}
</if>
<if test="pipeline != null and pipeline != ''">
AND V.pipeline_id =#{pipeline}
</if>
</select>
<select id="selectDictionarySelectBox"
parameterType="pps.core.base.service.data.metering_dictionary.QuerySelectBoxInput"
resultType="pps.core.base.entity.QuerySelectBoxOutputView">
SELECT id value,d_name name FROM metering_dictionary md
WHERE is_delete = 0
<if test="value != null and value != ''">
and md.parent_id= #{value}
</if>
ORDER BY sort ASC,id ASC
</select>
<select id="selectDictionaryRelSelectBox"
parameterType="pps.core.base.service.data.metering_dictionary.QuerySelectBoxInput"
resultType="pps.core.base.entity.QuerySelectBoxOutputView">
select DISTINCT dic_id value,
(SELECT md.d_name FROM metering_dictionary md WHERE id = mdr.dic_id limit 1) name
FROM metering_dictionary_rel mdr
<if test="value != null and value != ''">
where parent_id =#{value}
</if>
order by dic_id
</select>
</mapper>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pps.core.base.mapper.MeteringEnterprieViewMapper">
<resultMap id="BaseResultMap" type="pps.core.base.entity.MeteringEnterprieView">
<result column="id" property="id" jdbcType="VARCHAR"/>
<result column="ou_name" property="ouName" jdbcType="VARCHAR"/>
<result column="short_name" property="shortName" jdbcType="VARCHAR"/>
<result column="sort" property="sort" jdbcType="INTEGER"/>
</resultMap>
<sql id="Base_Column_List">
id
,
ou_name,
short_name,
sort
</sql>
<select id="selectOne" parameterType="pps.core.base.entity.MeteringEnterprieView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_enterprie
where
id=#{id}
</select>
<select id="selectList" parameterType="pps.core.base.entity.MeteringEnterprieView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_enterprie
where
id=#{id}
</select>
</mapper>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pps.core.base.mapper.MeteringEquipmentLedgerViewMapper">
<resultMap id="BaseResultMap" type="pps.core.base.entity.MeteringEquipmentLedgerView">
<result column="id" property="id" jdbcType="INTEGER"/>
<result column="pipeline_id" property="pipelineId" jdbcType="VARCHAR"/>
<result column="station_id" property="stationId" jdbcType="VARCHAR"/>
<result column="customer_id" property="customerId" jdbcType="VARCHAR"/>
<result column="subunit_id" property="subunitId" jdbcType="VARCHAR"/>
<result column="enterprie_id" property="enterprieId" jdbcType="VARCHAR"/>
<result column="equipment_id" property="equipmentId" jdbcType="INTEGER"/>
<result column="equipment_type_id" property="equipmentTypeId" jdbcType="INTEGER"/>
<result column="technology_location" property="technologyLocation" jdbcType="VARCHAR"/>
<result column="technology_number" property="technologyNumber" jdbcType="VARCHAR"/>
<result column="pps_equipment_id" property="ppsEquipmentId" jdbcType="VARCHAR"/>
<result column="pps_number" property="ppsNumber" jdbcType="VARCHAR"/>
<result column="production_factory_id" property="productionFactoryId" jdbcType="INTEGER"/>
<result column="production_number" property="productionNumber" jdbcType="VARCHAR"/>
<result column="production_date" property="productionDate" jdbcType="TIMESTAMP"/>
<result column="specifications_id" property="specificationsId" jdbcType="INTEGER"/>
<result column="commissioning_date" property="commissioningDate" jdbcType="TIMESTAMP"/>
<result column="usage_id" property="usageId" jdbcType="INTEGER"/>
<result column="usage1_id" property="usage1Id" jdbcType="INTEGER"/>
<result column="asset_belongs_id" property="assetBelongsId" jdbcType="INTEGER"/>
<result column="authority_id" property="authorityId" jdbcType="INTEGER"/>
<result column="usage_state_id" property="usageStateId" jdbcType="INTEGER"/>
<result column="asset_uint" property="assetUint" jdbcType="VARCHAR"/>
<result column="vcylce" property="vcylce" jdbcType="INTEGER"/>
<result column="medium_type" property="mediumType" jdbcType="VARCHAR"/>
<result column="caliber" property="caliber" jdbcType="INTEGER"/>
<result column="pressure_level" property="pressureLevel" jdbcType="INTEGER"/>
<result column="accuracy" property="accuracy" jdbcType="INTEGER"/>
<result column="minflow" property="minflow" jdbcType="INTEGER"/>
<result column="maxflow" property="maxflow" jdbcType="INTEGER"/>
<result column="demarcationflow" property="demarcationflow" jdbcType="INTEGER"/>
<result column="pot_number" property="potNumber" jdbcType="VARCHAR"/>
<result column="volume" property="volume" jdbcType="INTEGER"/>
<result column="type" property="type" jdbcType="INTEGER"/>
<result column="storage_medium" property="storageMedium" jdbcType="INTEGER"/>
<result column="bak" property="bak" jdbcType="VARCHAR"/>
<result column="workflow_id" property="workflowId" jdbcType="VARCHAR"/>
<result column="audit_status" property="auditStatus" jdbcType="INTEGER"/>
<result column="creater_id" property="createrId" jdbcType="VARCHAR"/>
<result column="creater" property="creater" jdbcType="VARCHAR"/>
<result column="create_date" property="createDate" jdbcType="TIMESTAMP"/>
</resultMap>
<sql id="Base_Column_List">
id
,
pipeline_id,
station_id,
customer_id,
subunit_id,
enterprie_id,
equipment_id,
equipment_type_id,
technology_location,
technology_number,
pps_equipment_id,
pps_number,
production_factory_id,
production_number,
production_date,
specifications_id,
commissioning_date,
usage_id,
usage1_id,
asset_belongs_id,
authority_id,
usage_state_id,
asset_uint,
vcylce,
medium_type,
caliber,
pressure_level,
accuracy,
minflow,
maxflow,
demarcationflow,
pot_number,
volume,
type,
storage_medium,
bak,
workflow_id,
audit_status,
creater_id,
creater,
create_date
</sql>
<select id="selectOne" parameterType="pps.core.base.entity.MeteringEquipmentLedgerView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_equipment_ledger
where
id=#{id}
</select>
<select id="selectList" parameterType="pps.core.base.entity.MeteringEquipmentLedgerView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_equipment_ledger
where
id=#{id}
</select>
</mapper>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pps.core.base.mapper.MeteringNewCustomerNameViewMapper">
<resultMap id="BaseResultMap" type="pps.core.base.entity.MeteringNewCustomerNameView">
<result column="id" property="id" jdbcType="VARCHAR"/>
<result column="customer_name" property="customerName" jdbcType="VARCHAR"/>
<result column="create_date" property="createDate" jdbcType="TIMESTAMP"/>
<result column="creater" property="creater" jdbcType="VARCHAR"/>
</resultMap>
<sql id="Base_Column_List">
id
,
customer_name,
create_date,
creater
</sql>
<select id="selectOne" parameterType="pps.core.base.entity.MeteringNewCustomerNameView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_new_customer_name
where
id=#{id}
</select>
<select id="selectList" parameterType="pps.core.base.entity.MeteringNewCustomerNameView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_new_customer_name
where
id=#{id}
</select>
</mapper>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pps.core.base.mapper.MeteringParticipationViewMapper">
<resultMap id="BaseResultMap" type="pps.core.base.entity.MeteringParticipationView">
<result column="id" property="id" jdbcType="INTEGER"/>
<result column="station_id" property="stationId" jdbcType="VARCHAR"/>
<result column="customer_id" property="customerId" jdbcType="VARCHAR"/>
<result column="create_id" property="createId" jdbcType="VARCHAR"/>
<result column="create_name" property="createName" jdbcType="VARCHAR"/>
<result column="create_date" property="createDate" jdbcType="TIMESTAMP"/>
<result column="pipeline_id" property="pipelineId" jdbcType="VARCHAR"/>
</resultMap>
<sql id="Base_Column_List">
id
,
station_id,
customer_id,
create_id,
create_name,
create_date,
pipeline_id
</sql>
<select id="selectOne" parameterType="pps.core.base.entity.MeteringParticipationView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_participation
where
id=#{id}
</select>
<select id="selectList" parameterType="pps.core.base.entity.MeteringParticipationView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_participation
where
id=#{id}
</select>
</mapper>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pps.core.base.mapper.MeteringPipeStationCustomerRelViewMapper">
<resultMap id="BaseResultMap" type="pps.core.base.entity.MeteringPipeStationCustomerRelView">
<result column="pipeline_id" property="pipelineId" jdbcType="VARCHAR"/>
<result column="station_id" property="stationId" jdbcType="VARCHAR"/>
<result column="client_id" property="clientId" jdbcType="VARCHAR"/>
<result column="create_date" property="createDate" jdbcType="TIMESTAMP"/>
<result column="creater" property="creater" jdbcType="VARCHAR"/>
</resultMap>
<sql id="Base_Column_List">
pipeline_id
,
station_id,
client_id,
create_date,
creater
</sql>
<select id="selectOne" parameterType="pps.core.base.entity.MeteringPipeStationCustomerRelView"
resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_pipe_station_customer_rel
where
id=#{id}
</select>
<select id="selectList" parameterType="pps.core.base.entity.MeteringPipeStationCustomerRelView"
resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_pipe_station_customer_rel
where
id=#{id}
</select>
</mapper>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pps.core.base.mapper.MeteringVerficationInfoViewMapper">
<resultMap id="BaseResultMap" type="pps.core.base.entity.MeteringVerficationInfoView">
<result column="id" property="id" jdbcType="INTEGER"/>
<result column="equipment_id" property="equipmentId" jdbcType="INTEGER"/>
<result column="uint" property="uint" jdbcType="VARCHAR"/>
<result column="date" property="date" jdbcType="TIMESTAMP"/>
<result column="result" property="result" jdbcType="INTEGER"/>
<result column="type" property="type" jdbcType="INTEGER"/>
<result column="method" property="method" jdbcType="INTEGER"/>
<result column="certificate_number" property="certificateNumber" jdbcType="VARCHAR"/>
<result column="overdue_cause" property="overdueCause" jdbcType="VARCHAR"/>
<result column="workflow_id" property="workflowId" jdbcType="VARCHAR"/>
<result column="audit_status" property="auditStatus" jdbcType="INTEGER"/>
<result column="creater_id" property="createrId" jdbcType="VARCHAR"/>
<result column="creater" property="creater" jdbcType="VARCHAR"/>
<result column="create_date" property="createDate" jdbcType="TIMESTAMP"/>
</resultMap>
<sql id="Base_Column_List">
id
,
equipment_id,
uint,
date,
result,
type,
method,
certificate_number,
overdue_cause,
workflow_id,
audit_status,
creater_id,
creater,
create_date
</sql>
<select id="selectOne" parameterType="pps.core.base.entity.MeteringVerficationInfoView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_verfication_info
where
id=#{id}
</select>
<select id="selectList" parameterType="pps.core.base.entity.MeteringVerficationInfoView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from metering_verfication_info
where
id=#{id}
</select>
</mapper>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pps.core.base.mapper.ScadaEnvironmentInfoViewMapper">
<resultMap id="BaseResultMap" type="pps.core.base.entity.ScadaEnvironmentInfoView">
<id column="id" property="id" jdbcType="VARCHAR"/>
<result column="environment_info_name" property="environmentInfoName" jdbcType="VARCHAR"/>
<result column="ip_address" property="ipAddress" jdbcType="VARCHAR"/>
<result column="user_name" property="userName" jdbcType="VARCHAR"/>
<result column="pwd" property="pwd" jdbcType="VARCHAR"/>
<result column="keys" property="keys" jdbcType="VARCHAR"/>
<result column="create_time" property="createTime" jdbcType="TIMESTAMP"/>
<result column="create_by_id" property="createById" jdbcType="VARCHAR"/>
<result column="create_by_name" property="createByName" jdbcType="VARCHAR"/>
<result column="modify_time" property="modifyTime" jdbcType="TIMESTAMP"/>
<result column="modify_by_id" property="modifyById" jdbcType="VARCHAR"/>
<result column="modify_by_name" property="modifyByName" jdbcType="VARCHAR"/>
<result column="port" property="port" jdbcType="VARCHAR"/>
<result column="agreement" property="agreement" jdbcType="VARCHAR"/>
<result column="sort" property="sort" jdbcType="INTEGER"/>
</resultMap>
<sql id="Base_Column_List">
id
,
environment_info_name,
ip_address,
user_name,
pwd,
keys,
create_time,
create_by_id,
create_by_name,
modify_time,
modify_by_id,
modify_by_name,
port,
agreement,
sort
</sql>
<select id="selectOne" parameterType="pps.core.base.entity.ScadaEnvironmentInfoView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from scada_environment_info
where
id=#{id}
</select>
<select id="selectList" parameterType="pps.core.base.entity.ScadaEnvironmentInfoView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from scada_environment_info
where
id=#{id}
</select>
</mapper>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pps.core.base.mapper.ScadaGatherBoxMOuViewMapper">
<resultMap id="BaseResultMap" type="pps.core.base.entity.ScadaGatherBoxMOuView">
<id column="id" property="id" jdbcType="VARCHAR"/>
<result column="gather_box_id" property="gatherBoxId" jdbcType="VARCHAR"/>
<result column="ou_id" property="ouId" jdbcType="VARCHAR"/>
<result column="ou_name" property="ouName" jdbcType="VARCHAR"/>
<result column="is_delete" property="isDelete" jdbcType="INTEGER"/>
<result column="create_time" property="createTime" jdbcType="TIMESTAMP"/>
<result column="create_by_id" property="createById" jdbcType="VARCHAR"/>
<result column="create_by_name" property="createByName" jdbcType="VARCHAR"/>
<result column="modify_time" property="modifyTime" jdbcType="TIMESTAMP"/>
<result column="modify_by_id" property="modifyById" jdbcType="VARCHAR"/>
<result column="modify_by_name" property="modifyByName" jdbcType="VARCHAR"/>
</resultMap>
<sql id="Base_Column_List">
id
,
gather_box_id,
ou_id,
ou_name,
is_delete,
create_time,
create_by_id,
create_by_name,
modify_time,
modify_by_id,
modify_by_name
</sql>
<select id="selectOne" parameterType="pps.core.base.entity.ScadaGatherBoxMOuView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from scada_gather_box_m_ou
where
id=#{id}
</select>
<select id="selectList" parameterType="pps.core.base.entity.ScadaGatherBoxMOuView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from scada_gather_box_m_ou
where
id=#{id}
</select>
</mapper>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pps.core.base.mapper.ScadaGatherBoxMStationViewMapper">
<resultMap id="BaseResultMap" type="pps.core.base.entity.ScadaGatherBoxMStationView">
<id column="id" property="id" jdbcType="VARCHAR"/>
<result column="gather_box_id" property="gatherBoxId" jdbcType="VARCHAR"/>
<result column="ou_id" property="ouId" jdbcType="VARCHAR"/>
<result column="ou_name" property="ouName" jdbcType="VARCHAR"/>
<result column="station_id" property="stationId" jdbcType="VARCHAR"/>
<result column="station_name" property="stationName" jdbcType="VARCHAR"/>
<result column="create_time" property="createTime" jdbcType="TIMESTAMP"/>
<result column="create_by_id" property="createById" jdbcType="VARCHAR"/>
<result column="create_by_name" property="createByName" jdbcType="VARCHAR"/>
<result column="modify_time" property="modifyTime" jdbcType="TIMESTAMP"/>
<result column="modify_by_id" property="modifyById" jdbcType="VARCHAR"/>
<result column="modify_by_name" property="modifyByName" jdbcType="VARCHAR"/>
</resultMap>
<sql id="Base_Column_List">
id
,
gather_box_id,
ou_id,
ou_name,
station_id,
station_name,
create_time,
create_by_id,
create_by_name,
modify_time,
modify_by_id,
modify_by_name
</sql>
<select id="selectOne" parameterType="pps.core.base.entity.ScadaGatherBoxMStationView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from scada_gather_box_m_station
where
id=#{id}
</select>
<select id="selectList" parameterType="pps.core.base.entity.ScadaGatherBoxMStationView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from scada_gather_box_m_station
where
id=#{id}
</select>
</mapper>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pps.core.base.mapper.ScadaGatherBoxPropertyViewMapper">
<resultMap id="BaseResultMap" type="pps.core.base.entity.ScadaGatherBoxPropertyView">
<id column="id" property="id" jdbcType="VARCHAR"/>
<result column="scada_gather_box_id" property="scadaGatherBoxId" jdbcType="VARCHAR"/>
<result column="business_type" property="businessType" jdbcType="VARCHAR"/>
<result column="create_time" property="createTime" jdbcType="TIMESTAMP"/>
<result column="create_by_id" property="createById" jdbcType="VARCHAR"/>
<result column="create_by_name" property="createByName" jdbcType="VARCHAR"/>
<result column="modify_time" property="modifyTime" jdbcType="TIMESTAMP"/>
<result column="modify_by_id" property="modifyById" jdbcType="VARCHAR"/>
<result column="modify_by_name" property="modifyByName" jdbcType="VARCHAR"/>
</resultMap>
<sql id="Base_Column_List">
id
,
scada_gather_box_id,
business_type,
create_time,
create_by_id,
create_by_name,
modify_time,
modify_by_id,
modify_by_name
</sql>
<select id="selectOne" parameterType="pps.core.base.entity.ScadaGatherBoxPropertyView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from scada_gather_box_property
where
id=#{id}
</select>
<select id="selectList" parameterType="pps.core.base.entity.ScadaGatherBoxPropertyView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from scada_gather_box_property
where
id=#{id}
</select>
</mapper>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pps.core.base.mapper.ScadaGatherBoxRelDetailViewMapper">
<resultMap id="BaseResultMap" type="pps.core.base.entity.ScadaGatherBoxRelDetailView">
<id column="id" property="id" jdbcType="VARCHAR"/>
<result column="scada_gather_box_rel_id" property="scadaGatherBoxRelId" jdbcType="VARCHAR"/>
<result column="table_column" property="tableColumn" jdbcType="VARCHAR"/>
<result column="table_column_description" property="tableColumnDescription" jdbcType="VARCHAR"/>
<result column="defult_column" property="defultColumn" jdbcType="VARCHAR"/>
<result column="box_detail_type" property="boxDetailType" jdbcType="INTEGER"/>
<result column="create_time" property="createTime" jdbcType="TIMESTAMP"/>
<result column="create_by_id" property="createById" jdbcType="VARCHAR"/>
<result column="create_by_name" property="createByName" jdbcType="VARCHAR"/>
<result column="modify_time" property="modifyTime" jdbcType="TIMESTAMP"/>
<result column="modify_by_id" property="modifyById" jdbcType="VARCHAR"/>
<result column="modify_by_name" property="modifyByName" jdbcType="VARCHAR"/>
<result column="check_show" property="checkShow" jdbcType="VARCHAR"/>
<result column="sort" property="sort" jdbcType="VARCHAR"/>
<result column="column_width" property="columnWidth" jdbcType="VARCHAR"/>
</resultMap>
<sql id="Base_Column_List">
id
,
scada_gather_box_rel_id,
table_column,
table_column_description,
defult_column,
box_detail_type,
create_time,
create_by_id,
create_by_name,
modify_time,
modify_by_id,
modify_by_name,
check_show,
sort,
column_width
</sql>
<select id="selectOne" parameterType="pps.core.base.entity.ScadaGatherBoxRelDetailView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from scada_gather_box_rel_detail
where
id=#{id}
</select>
<select id="selectList" parameterType="pps.core.base.entity.ScadaGatherBoxRelDetailView" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from scada_gather_box_rel_detail
where
id=#{id}
</select>
</mapper>
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