Commit 6339761b authored by ZWT's avatar ZWT

feat(零碳): 长庆

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

BREAKING CHANGE: 无

Closes 无

[skip ci]
parent d03b5ae9
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 ScadaGatherConfInView implements Serializable {
@XText("主键")
@TableField
private String id;
@XText("scada采集模型关系配置主键")
@TableField
private String scadaGatherBoxRelId;
@XText("查询条件入参 ")
@TableField
private String confInParam;
@XText("入参描述")
@TableField
private String paramDescribe;
@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 paramType;
@XText("参数编码")
@TableField
private String paramCode;
public String getParamType() {
return paramType;
}
public void setParamType(String paramType) {
this.paramType = paramType;
}
public String getParamCode() {
return paramCode;
}
public void setParamCode(String paramCode) {
this.paramCode = paramCode;
}
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 getConfInParam() {
return this.confInParam;
}
public void setConfInParam(String value) {
this.confInParam = value;
}
public String getParamDescribe() {
return this.paramDescribe;
}
public void setParamDescribe(String value) {
this.paramDescribe = 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_conf_log")
public class ScadaGatherConfLogEnt implements Serializable {
@XText("主键")
@TableId(type = IdType.AUTO)
private String id;
@XText("scada采集配置表id")
@TableField
private String scadaGatherConfId;
@XText("scada环境表id")
@TableField
private String scadaEnvironmentInfoId;
@XText("scada点号")
@TableField
private String scadaTag;
@XText("采集频率")
@TableField
private String collectInterval;
@XText("采集开始时间")
@TableField
private String collectStartTime;
@XText("采集失效时间")
@TableField
private String gatherExpiryDate;
@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 getScadaGatherConfId() {
return this.scadaGatherConfId;
}
public void setScadaGatherConfId(String value) {
this.scadaGatherConfId = value;
}
public String getScadaEnvironmentInfoId() {
return this.scadaEnvironmentInfoId;
}
public void setScadaEnvironmentInfoId(String value) {
this.scadaEnvironmentInfoId = value;
}
public String getScadaTag() {
return this.scadaTag;
}
public void setScadaTag(String value) {
this.scadaTag = value;
}
public String getCollectInterval() {
return this.collectInterval;
}
public void setCollectInterval(String value) {
this.collectInterval = value;
}
public String getCollectStartTime() {
return this.collectStartTime;
}
public void setCollectStartTime(String value) {
this.collectStartTime = value;
}
public String getGatherExpiryDate() {
return this.gatherExpiryDate;
}
public void setGatherExpiryDate(String value) {
this.gatherExpiryDate = 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 ScadaGatherConfLogView implements Serializable {
@XText("主键")
@TableField
private String id;
@XText("scada采集配置表id")
@TableField
private String scadaGatherConfId;
@XText("scada环境表id")
@TableField
private String scadaEnvironmentInfoId;
@XText("scada点号")
@TableField
private String scadaTag;
@XText("采集频率")
@TableField
private String collectInterval;
@XText("采集开始时间")
@TableField
private String collectStartTime;
@XText("采集失效时间")
@TableField
private String gatherExpiryDate;
@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 getScadaGatherConfId() {
return this.scadaGatherConfId;
}
public void setScadaGatherConfId(String value) {
this.scadaGatherConfId = value;
}
public String getScadaEnvironmentInfoId() {
return this.scadaEnvironmentInfoId;
}
public void setScadaEnvironmentInfoId(String value) {
this.scadaEnvironmentInfoId = value;
}
public String getScadaTag() {
return this.scadaTag;
}
public void setScadaTag(String value) {
this.scadaTag = value;
}
public String getCollectInterval() {
return this.collectInterval;
}
public void setCollectInterval(String value) {
this.collectInterval = value;
}
public String getCollectStartTime() {
return this.collectStartTime;
}
public void setCollectStartTime(String value) {
this.collectStartTime = value;
}
public String getGatherExpiryDate() {
return this.gatherExpiryDate;
}
public void setGatherExpiryDate(String value) {
this.gatherExpiryDate = 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 ScadaGatherConfView implements Serializable {
@XText("主键")
@TableField
private String id;
@XText("scada采集模型关系配置id")
@TableField
private String scadaGatherBoxId;
@XText("scada采集模型关系配置主键")
@TableField
private String scadaGatherBoxRelId;
@XText("scada环境标识 ")
@TableField
private String scadaEnvironmentInfoId;
@XText("scada环境名称")
@TableField
private String environmentInfoName;
@XText("scada 清单标识")
@TableField
private String scadaInventoryInfoId;
@XText("Scada点号")
@TableField
private String scadaTag;
@XText("config行数据主键")
@TableField
private String configColumnId;
@XText("Scada对应采集标签名称")
@TableField
private String tagName;
@XText("开始采集时间")
@TableField
private String collectStartTime;
@XText("采集频率")
@TableField
private String collectInterval;
@XText("最小报警值")
@TableField
private String alarmMin;
@XText("最大报警值")
@TableField
private String alarmMax;
@XText("计量单位")
@TableField
private String dataUnit;
@XText("描述")
@TableField
private String description;
@XText("采集失效日期")
@TableField
private String gatherExpiryDate;
@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("采集方式:true-自动;false-手动")
@TableField
private Boolean TimerGather;
@XText("向前向后(1-向前;2-向后)")
@TableField
private String moveTowards;
@XText("采集类型(1-常规;2-自定义)")
@TableField
private String gatherType;
@XText("偏移量")
@TableField
private String gatherOffset;
@XText("计算方式(字典)")
private String computWay;
@XText("计算系数)")
private String computCoefficient;
public String getComputWay() {
return computWay;
}
public void setComputWay(String computWay) {
this.computWay = computWay;
}
public String getComputCoefficient() {
return computCoefficient;
}
public void setComputCoefficient(String computCoefficient) {
this.computCoefficient = computCoefficient;
}
public String getGatherOffset() {
return gatherOffset;
}
public void setGatherOffset(String gatherOffset) {
this.gatherOffset = gatherOffset;
}
public String getMoveTowards() {
return moveTowards;
}
public void setMoveTowards(String moveTowards) {
this.moveTowards = moveTowards;
}
public String getGatherType() {
return gatherType;
}
public void setGatherType(String gatherType) {
this.gatherType = gatherType;
}
public Boolean getTimerGather() {
return TimerGather;
}
public void setTimerGather(Boolean timerGather) {
TimerGather = timerGather;
}
public String getGatherExpiryDate() {
return gatherExpiryDate;
}
public void setGatherExpiryDate(String gatherExpiryDate) {
this.gatherExpiryDate = gatherExpiryDate;
}
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 getScadaGatherBoxRelId() {
return this.scadaGatherBoxRelId;
}
public void setScadaGatherBoxRelId(String value) {
this.scadaGatherBoxRelId = value;
}
public String getScadaEnvironmentInfoId() {
return this.scadaEnvironmentInfoId;
}
public void setScadaEnvironmentInfoId(String value) {
this.scadaEnvironmentInfoId = value;
}
public String getEnvironmentInfoName() {
return this.environmentInfoName;
}
public void setEnvironmentInfoName(String value) {
this.environmentInfoName = value;
}
public String getScadaInventoryInfoId() {
return this.scadaInventoryInfoId;
}
public void setScadaInventoryInfoId(String value) {
this.scadaInventoryInfoId = value;
}
public String getScadaTag() {
return this.scadaTag;
}
public void setScadaTag(String value) {
this.scadaTag = value;
}
public String getConfigColumnId() {
return this.configColumnId;
}
public void setConfigColumnId(String value) {
this.configColumnId = value;
}
public String getTagName() {
return this.tagName;
}
public void setTagName(String value) {
this.tagName = value;
}
public String getCollectStartTime() {
return this.collectStartTime;
}
public void setCollectStartTime(String value) {
this.collectStartTime = value;
}
public String getCollectInterval() {
return this.collectInterval;
}
public void setCollectInterval(String value) {
this.collectInterval = value;
}
public String getAlarmMin() {
return this.alarmMin;
}
public void setAlarmMin(String value) {
this.alarmMin = value;
}
public String getAlarmMax() {
return this.alarmMax;
}
public void setAlarmMax(String value) {
this.alarmMax = value;
}
public String getDataUnit() {
return this.dataUnit;
}
public void setDataUnit(String value) {
this.dataUnit = value;
}
public String getDescription() {
return this.description;
}
public void setDescription(String value) {
this.description = 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_data")
public class ScadaGatherDataEnt implements Serializable {
@XText("主键")
@TableId(type = IdType.AUTO)
private String id;
@XText("scada采集配置表主键")
@TableField
private String scadaGatherConfId;
@XText("scada点号")
@TableField
private String scadaTag;
@XText("值 ")
@TableField
private String tagValue;
@XText("采集日期")
@TableField
private Date tagTime;
@XText("是否同步完成")
@TableField
private Integer isSync;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getScadaGatherConfId() {
return this.scadaGatherConfId;
}
public void setScadaGatherConfId(String value) {
this.scadaGatherConfId = value;
}
public String getScadaTag() {
return this.scadaTag;
}
public void setScadaTag(String value) {
this.scadaTag = value;
}
public String getTagValue() {
return this.tagValue;
}
public void setTagValue(String value) {
this.tagValue = value;
}
public Date getTagTime() {
return this.tagTime;
}
public void setTagTime(Date value) {
this.tagTime = value;
}
public Integer getIsSync() {
return this.isSync;
}
public void setIsSync(Integer value) {
this.isSync = 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 ScadaGatherDataView implements Serializable {
@XText("主键")
@TableField
private String id;
@XText("scada采集配置表主键")
@TableField
private String scadaGatherConfId;
@XText("scada点号")
@TableField
private String scadaTag;
@XText("值 ")
@TableField
private String tagValue;
@XText("采集日期")
@TableField
private Date tagTime;
@XText("是否同步完成")
@TableField
private Integer isSync;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getScadaGatherConfId() {
return this.scadaGatherConfId;
}
public void setScadaGatherConfId(String value) {
this.scadaGatherConfId = value;
}
public String getScadaTag() {
return this.scadaTag;
}
public void setScadaTag(String value) {
this.scadaTag = value;
}
public String getTagValue() {
return this.tagValue;
}
public void setTagValue(String value) {
this.tagValue = value;
}
public Date getTagTime() {
return this.tagTime;
}
public void setTagTime(Date value) {
this.tagTime = value;
}
public Integer getIsSync() {
return this.isSync;
}
public void setIsSync(Integer value) {
this.isSync = 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_manual_conf")
public class ScadaGatherManualConfEnt 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("管段id")
@TableField
private String segmentId;
@XText("管段名称")
@TableField
private String segmentName;
@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 equipmentId;
@XText("设备名称")
@TableField
private String equipmentName;
@XText("设备类型")
@TableField
private String equipmentTypeId;
@XText("设备类型描述")
@TableField
private String equipmentTypeName;
@XText("排序")
@TableField
private Integer sort;
@XText("scada环境标识")
@TableField
private String scadaEnvironmentInfoId;
@XText("出口压力scada点号")
@TableField
private String outPressureScada;
@XText("出口温度scada点号")
@TableField
private String outTemperatureScada;
@XText("工况密度scada点号")
@TableField
private String workingDensityScada;
@XText("瞬时流量scada点号")
@TableField
private String instantFlowScada;
@TableField
private String createById;
@TableField
private String createByName;
@TableField
private Date createTime;
@TableField
private String modifyById;
@TableField
private String modifyByName;
@TableField
private Date modifyTime;
@XText("scada采集模型关系配置id")
@TableField
private String scadaGatherBoxId;
@XText("scada采集模型关系配置主键")
@TableField
private String scadaGatherBoxRelId;
@XText("config行数据主键")
@TableField
private String configColumnId;
@XText("Scada点号")
@TableField
private String scadaTag;
@XText("Scada采集列")
@TableField
private String scadaColumn;
public String getScadaGatherBoxId() {
return scadaGatherBoxId;
}
public void setScadaGatherBoxId(String scadaGatherBoxId) {
this.scadaGatherBoxId = scadaGatherBoxId;
}
public String getScadaGatherBoxRelId() {
return scadaGatherBoxRelId;
}
public void setScadaGatherBoxRelId(String scadaGatherBoxRelId) {
this.scadaGatherBoxRelId = scadaGatherBoxRelId;
}
public String getConfigColumnId() {
return configColumnId;
}
public void setConfigColumnId(String configColumnId) {
this.configColumnId = configColumnId;
}
public String getScadaTag() {
return scadaTag;
}
public void setScadaTag(String scadaTag) {
this.scadaTag = scadaTag;
}
public String getScadaColumn() {
return scadaColumn;
}
public void setScadaColumn(String scadaColumn) {
this.scadaColumn = scadaColumn;
}
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 getSegmentId() {
return this.segmentId;
}
public void setSegmentId(String value) {
this.segmentId = value;
}
public String getSegmentName() {
return this.segmentName;
}
public void setSegmentName(String value) {
this.segmentName = 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 getCustomerId() {
return this.customerId;
}
public void setCustomerId(String value) {
this.customerId = value;
}
public String getCustomerName() {
return this.customerName;
}
public void setCustomerName(String value) {
this.customerName = value;
}
public String getEquipmentId() {
return this.equipmentId;
}
public void setEquipmentId(String value) {
this.equipmentId = value;
}
public String getEquipmentName() {
return this.equipmentName;
}
public void setEquipmentName(String value) {
this.equipmentName = value;
}
public String getEquipmentTypeId() {
return this.equipmentTypeId;
}
public void setEquipmentTypeId(String value) {
this.equipmentTypeId = value;
}
public String getEquipmentTypeName() {
return this.equipmentTypeName;
}
public void setEquipmentTypeName(String value) {
this.equipmentTypeName = value;
}
public Integer getSort() {
return this.sort;
}
public void setSort(Integer value) {
this.sort = value;
}
public String getScadaEnvironmentInfoId() {
return this.scadaEnvironmentInfoId;
}
public void setScadaEnvironmentInfoId(String value) {
this.scadaEnvironmentInfoId = value;
}
public String getOutPressureScada() {
return this.outPressureScada;
}
public void setOutPressureScada(String value) {
this.outPressureScada = value;
}
public String getOutTemperatureScada() {
return this.outTemperatureScada;
}
public void setOutTemperatureScada(String value) {
this.outTemperatureScada = value;
}
public String getWorkingDensityScada() {
return this.workingDensityScada;
}
public void setWorkingDensityScada(String value) {
this.workingDensityScada = value;
}
public String getInstantFlowScada() {
return this.instantFlowScada;
}
public void setInstantFlowScada(String value) {
this.instantFlowScada = 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 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 Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = 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 ScadaGatherManualConfView 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("管段id")
@TableField
private String segmentId;
@XText("管段名称")
@TableField
private String segmentName;
@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 equipmentId;
@XText("设备名称")
@TableField
private String equipmentName;
@XText("设备类型")
@TableField
private String equipmentTypeId;
@XText("设备类型描述")
@TableField
private String equipmentTypeName;
@XText("排序")
@TableField
private Integer sort;
@XText("scada环境标识")
@TableField
private String scadaEnvironmentInfoId;
@XText("出口压力scada点号")
@TableField
private String outPressureScada;
@XText("出口温度scada点号")
@TableField
private String outTemperatureScada;
@XText("工况密度scada点号")
@TableField
private String workingDensityScada;
@XText("瞬时流量scada点号")
@TableField
private String instantFlowScada;
@TableField
private String createById;
@TableField
private String createByName;
@TableField
private Date createTime;
@TableField
private String modifyById;
@TableField
private String modifyByName;
@TableField
private Date modifyTime;
@XText("scada采集模型关系配置id")
@TableField
private String scadaGatherBoxId;
@XText("scada采集模型关系配置主键")
@TableField
private String scadaGatherBoxRelId;
@XText("config行数据主键")
@TableField
private String configColumnId;
@XText("Scada点号")
@TableField
private String scadaTag;
@XText("Scada采集列")
@TableField
private String scadaColumn;
public String getScadaGatherBoxId() {
return scadaGatherBoxId;
}
public void setScadaGatherBoxId(String scadaGatherBoxId) {
this.scadaGatherBoxId = scadaGatherBoxId;
}
public String getScadaGatherBoxRelId() {
return scadaGatherBoxRelId;
}
public void setScadaGatherBoxRelId(String scadaGatherBoxRelId) {
this.scadaGatherBoxRelId = scadaGatherBoxRelId;
}
public String getConfigColumnId() {
return configColumnId;
}
public void setConfigColumnId(String configColumnId) {
this.configColumnId = configColumnId;
}
public String getScadaTag() {
return scadaTag;
}
public void setScadaTag(String scadaTag) {
this.scadaTag = scadaTag;
}
public String getScadaColumn() {
return scadaColumn;
}
public void setScadaColumn(String scadaColumn) {
this.scadaColumn = scadaColumn;
}
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 getSegmentId() {
return this.segmentId;
}
public void setSegmentId(String value) {
this.segmentId = value;
}
public String getSegmentName() {
return this.segmentName;
}
public void setSegmentName(String value) {
this.segmentName = 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 getCustomerId() {
return this.customerId;
}
public void setCustomerId(String value) {
this.customerId = value;
}
public String getCustomerName() {
return this.customerName;
}
public void setCustomerName(String value) {
this.customerName = value;
}
public String getEquipmentId() {
return this.equipmentId;
}
public void setEquipmentId(String value) {
this.equipmentId = value;
}
public String getEquipmentName() {
return this.equipmentName;
}
public void setEquipmentName(String value) {
this.equipmentName = value;
}
public String getEquipmentTypeId() {
return this.equipmentTypeId;
}
public void setEquipmentTypeId(String value) {
this.equipmentTypeId = value;
}
public String getEquipmentTypeName() {
return this.equipmentTypeName;
}
public void setEquipmentTypeName(String value) {
this.equipmentTypeName = value;
}
public Integer getSort() {
return this.sort;
}
public void setSort(Integer value) {
this.sort = value;
}
public String getScadaEnvironmentInfoId() {
return this.scadaEnvironmentInfoId;
}
public void setScadaEnvironmentInfoId(String value) {
this.scadaEnvironmentInfoId = value;
}
public String getOutPressureScada() {
return this.outPressureScada;
}
public void setOutPressureScada(String value) {
this.outPressureScada = value;
}
public String getOutTemperatureScada() {
return this.outTemperatureScada;
}
public void setOutTemperatureScada(String value) {
this.outTemperatureScada = value;
}
public String getWorkingDensityScada() {
return this.workingDensityScada;
}
public void setWorkingDensityScada(String value) {
this.workingDensityScada = value;
}
public String getInstantFlowScada() {
return this.instantFlowScada;
}
public void setInstantFlowScada(String value) {
this.instantFlowScada = 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 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 Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = 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_inventory_info")
public class ScadaInventoryInfoEnt implements Serializable {
@XText("主键")
@TableId(type = IdType.AUTO)
private String id;
@XText("scada环境标识")
@TableField
private String scadaEnvironmentInfoId;
@XText("scada点号")
@TableField
private String scadaTag;
@XText("描述")
@TableField
private String description;
@XText("编码")
@TableField
private String number;
@XText("是否生效")
@TableField
private String isValid;
@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 getScadaEnvironmentInfoId() {
return this.scadaEnvironmentInfoId;
}
public void setScadaEnvironmentInfoId(String value) {
this.scadaEnvironmentInfoId = value;
}
public String getScadaTag() {
return this.scadaTag;
}
public void setScadaTag(String value) {
this.scadaTag = value;
}
public String getDescription() {
return this.description;
}
public void setDescription(String value) {
this.description = value;
}
public String getNumber() {
return this.number;
}
public void setNumber(String value) {
this.number = value;
}
public String getIsValid() {
return this.isValid;
}
public void setIsValid(String value) {
this.isValid = 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 ScadaInventoryInfoView implements Serializable {
@XText("主键")
@TableField
private String id;
@XText("scada环境标识")
@TableField
private String scadaEnvironmentInfoId;
@XText("scada点号")
@TableField
private String scadaTag;
@XText("描述")
@TableField
private String description;
@XText("编码")
@TableField
private String number;
@XText("是否生效")
@TableField
private String isValid;
@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 getScadaEnvironmentInfoId() {
return this.scadaEnvironmentInfoId;
}
public void setScadaEnvironmentInfoId(String value) {
this.scadaEnvironmentInfoId = value;
}
public String getScadaTag() {
return this.scadaTag;
}
public void setScadaTag(String value) {
this.scadaTag = value;
}
public String getDescription() {
return this.description;
}
public void setDescription(String value) {
this.description = value;
}
public String getNumber() {
return this.number;
}
public void setNumber(String value) {
this.number = value;
}
public String getIsValid() {
return this.isValid;
}
public void setIsValid(String value) {
this.isValid = 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 lombok.Data;
import java.util.Date;
/**
* @Title: [标题]日志实体
* @Description: [功能描述]
* @author:lyy
*/
@Data
@TableName("scada_log")
public class ScadaLogEnt {
@TableId(type = IdType.ASSIGN_UUID)
@TableField("id")
private String id;
@TableField("module_name")
private String moduleName;
@TableField("mothed_name")
private String mothedName;
@TableField("message")
private String message;
@TableField("exe_result")
private String exeResult;
@TableField("exe_duration")
private String exeDuration;
@TableField("create_time")
private Date createTime;
@TableField("tag")
private String tag;
@TableField("tag1")
private String tag1;
public ScadaLogEnt(String mothedName, String msg, String exeResult) {
this.mothedName = mothedName;
this.message = msg;
this.exeResult = exeResult;
}
public ScadaLogEnt() {
}
public ScadaLogEnt(String id, String moduleName, String mothedName, String message, String exeResult, Date createTime, String tag, String tag1, String exeDuration) {
this.id = id;
this.moduleName = moduleName;
this.mothedName = mothedName;
this.message = message;
this.exeResult = exeResult;
this.createTime = createTime;
this.tag = tag;
this.tag1 = tag1;
this.exeDuration = exeDuration;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
@TableName("view_metering_station_customer")
public class ViewMeteringStationCustomerEnt implements Serializable {
@TableField
private String pipelineId;
@TableField
private String pipelineName;
@TableField
private String stationId;
@TableField
private String stationName;
@TableField
private String clientId;
@TableField
private String clientShortAme;
@TableField
private String clientName;
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 getClientId() {
return this.clientId;
}
public void setClientId(String value) {
this.clientId = value;
}
public String getClientShortAme() {
return this.clientShortAme;
}
public void setClientShortAme(String value) {
this.clientShortAme = value;
}
public String getClientName() {
return this.clientName;
}
public void setClientName(String value) {
this.clientName = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
public class ViewMeteringStationCustomerView implements Serializable {
@TableField
private String pipelineId;
@TableField
private String pipelineName;
@TableField
private String stationId;
@TableField
private String stationName;
@TableField
private String clientId;
@TableField
private String clientShortAme;
@TableField
private String clientName;
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 getClientId() {
return this.clientId;
}
public void setClientId(String value) {
this.clientId = value;
}
public String getClientShortAme() {
return this.clientShortAme;
}
public void setClientShortAme(String value) {
this.clientShortAme = value;
}
public String getClientName() {
return this.clientName;
}
public void setClientName(String value) {
this.clientName = 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("view_metering_verfication_info")
public class ViewMeteringVerficationInfoEnt implements Serializable {
@TableField
private Integer id;
@TableField
private Integer equipmentId;
@TableField
private String uint;
@TableField
private Date date;
@TableField
private Integer result;
@TableField
private Integer type;
@TableField
private Integer method;
@TableField
private String certificateNumber;
@TableField
private String overdueCause;
@TableField
private String workflowId;
@TableField
private Integer auditStatus;
@TableField
private String createrId;
@TableField
private String creater;
@TableField
private Date createDate;
@TableField
private String vMethodName;
@TableField
private String vResultName;
@TableField
private String vTypeName;
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;
}
public String getVMethodName() {
return this.vMethodName;
}
public void setVMethodName(String value) {
this.vMethodName = value;
}
public String getVResultName() {
return this.vResultName;
}
public void setVResultName(String value) {
this.vResultName = value;
}
public String getVTypeName() {
return this.vTypeName;
}
public void setVTypeName(String value) {
this.vTypeName = value;
}
}
package pps.core.base.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
import java.util.Date;
public class ViewMeteringVerficationInfoView implements Serializable {
@TableField
private Integer id;
@TableField
private Integer equipmentId;
@TableField
private String uint;
@TableField
private Date date;
@TableField
private Integer result;
@TableField
private Integer type;
@TableField
private Integer method;
@TableField
private String certificateNumber;
@TableField
private String overdueCause;
@TableField
private String workflowId;
@TableField
private Integer auditStatus;
@TableField
private String createrId;
@TableField
private String creater;
@TableField
private Date createDate;
@TableField
private String vMethodName;
@TableField
private String vResultName;
@TableField
private String vTypeName;
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;
}
public String getVMethodName() {
return this.vMethodName;
}
public void setVMethodName(String value) {
this.vMethodName = value;
}
public String getVResultName() {
return this.vResultName;
}
public void setVResultName(String value) {
this.vResultName = value;
}
public String getVTypeName() {
return this.vTypeName;
}
public void setVTypeName(String value) {
this.vTypeName = value;
}
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherConfInView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.ScadaGatherConfInViewMapper")
public interface ScadaGatherConfInViewMapper {
ScadaGatherConfInView selectOne(ScadaGatherConfInView record);
List<ScadaGatherConfInView> selectList(ScadaGatherConfInView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherConfLogEnt;
@Repository(value = "pps.core.base.mapper.ScadaGatherConfLogMapper")
public interface ScadaGatherConfLogMapper extends BaseMapper<ScadaGatherConfLogEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherConfLogView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.ScadaGatherConfLogViewMapper")
public interface ScadaGatherConfLogViewMapper {
ScadaGatherConfLogView selectOne(ScadaGatherConfLogView record);
List<ScadaGatherConfLogView> selectList(ScadaGatherConfLogView record);
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherConfView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.ScadaGatherConfViewMapper")
public interface ScadaGatherConfViewMapper {
ScadaGatherConfView selectOne(ScadaGatherConfView record);
List<ScadaGatherConfView> selectList(ScadaGatherConfView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherDataEnt;
@Repository(value = "pps.core.base.mapper.ScadaGatherDataMapper")
public interface ScadaGatherDataMapper extends BaseMapper<ScadaGatherDataEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherDataView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.ScadaGatherDataViewMapper")
public interface ScadaGatherDataViewMapper {
ScadaGatherDataView selectOne(ScadaGatherDataView record);
List<ScadaGatherDataView> selectList(ScadaGatherDataView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherManualConfEnt;
@Repository(value = "pps.core.base.mapper.ScadaGatherManualConfMapper")
public interface ScadaGatherManualConfMapper extends BaseMapper<ScadaGatherManualConfEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaGatherManualConfView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.ScadaGatherManualConfViewMapper")
public interface ScadaGatherManualConfViewMapper {
ScadaGatherManualConfView selectOne(ScadaGatherManualConfView record);
List<ScadaGatherManualConfView> selectList(ScadaGatherManualConfView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaInventoryInfoEnt;
@Repository(value = "pps.core.base.mapper.ScadaInventoryInfoMapper")
public interface ScadaInventoryInfoMapper extends BaseMapper<ScadaInventoryInfoEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaInventoryInfoView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.ScadaInventoryInfoViewMapper")
public interface ScadaInventoryInfoViewMapper {
ScadaInventoryInfoView selectOne(ScadaInventoryInfoView record);
List<ScadaInventoryInfoView> selectList(ScadaInventoryInfoView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ScadaLogEnt;
/**
* @Title: [标题]
* @Description: [功能描述]
* @author:lyy
*/
@Repository(value = "pps.core.base.mapper.ScadaLogEntMapper")
public interface ScadaLogEntMapper extends BaseMapper<ScadaLogEnt> {
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ViewMeteringEquipmentLedgerEnt;
@Repository(value = "pps.core.base.mapper.ViewMeteringEquipmentLedgerMapper")
public interface ViewMeteringEquipmentLedgerMapper extends BaseMapper<ViewMeteringEquipmentLedgerEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ViewMeteringEquipmentLedgerView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.ViewMeteringEquipmentLedgerViewMapper")
public interface ViewMeteringEquipmentLedgerViewMapper {
ViewMeteringEquipmentLedgerView selectOne(ViewMeteringEquipmentLedgerView record);
List<ViewMeteringEquipmentLedgerView> selectList(ViewMeteringEquipmentLedgerView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ViewMeteringStationCustomerEnt;
@Repository(value = "pps.core.base.mapper.ViewMeteringStationCustomerMapper")
public interface ViewMeteringStationCustomerMapper extends BaseMapper<ViewMeteringStationCustomerEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ViewMeteringStationCustomerView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.ViewMeteringStationCustomerViewMapper")
public interface ViewMeteringStationCustomerViewMapper {
ViewMeteringStationCustomerView selectOne(ViewMeteringStationCustomerView record);
List<ViewMeteringStationCustomerView> selectList(ViewMeteringStationCustomerView record);
}
package pps.core.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ViewMeteringVerficationInfoEnt;
@Repository(value = "pps.core.base.mapper.ViewMeteringVerficationInfoMapper")
public interface ViewMeteringVerficationInfoMapper extends BaseMapper<ViewMeteringVerficationInfoEnt> {
}
package pps.core.base.mapper;
import org.springframework.stereotype.Repository;
import pps.core.base.entity.ViewMeteringVerficationInfoView;
import java.util.List;
@Repository(value = "pps.core.base.mapper.ViewMeteringVerficationInfoViewMapper")
public interface ViewMeteringVerficationInfoViewMapper {
ViewMeteringVerficationInfoView selectOne(ViewMeteringVerficationInfoView record);
List<ViewMeteringVerficationInfoView> selectList(ViewMeteringVerficationInfoView record);
}
package pps.core.base.service.data;
public class CommonID {
private String id;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}
package pps.core.base.service.data;
public class CommonIDName {
private String id;
private String name;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
package pps.core.base.service.data;
public class CommonIDValue {
private String id;
private String value;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
package pps.core.base.service.data;
import xstartup.annotation.XText;
/**
* @author lixueyan
* @date 2023/2/9 0009 14:50
*/
public class CommonImportError {
@XText("行号")
private Integer rowNumber;
@XText("任务名称")
private String taskName;
@XText("错误信息")
private String errorMsg;
public CommonImportError(Integer rowNumber, String taskName, String errorMsg) {
this.rowNumber = rowNumber;
this.taskName = taskName;
this.errorMsg = errorMsg;
}
public Integer getRowNumber() {
return rowNumber;
}
public void setRowNumber(Integer rowNumber) {
this.rowNumber = rowNumber;
}
public String getTaskName() {
return taskName;
}
public void setTaskName(String taskName) {
this.taskName = taskName;
}
public String getErrorMsg() {
return errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
}
package pps.core.base.service.data;
import java.util.TreeMap;
public class CommonMap extends TreeMap<String, Object> {
}
\ No newline at end of file
package pps.core.base.service.data;
public class CommonName {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
package pps.core.base.service.data.base_client;
import xstartup.annotation.XText;
import java.util.Date;
public class CreateBaseClientInput {
@XText("主键")
private String id;
@XText("编码")
private String clientCode;
@XText("名称")
private String clientName;
@XText("简称")
private String clientShortAme;
@XText("曾用名")
private String usedName;
@XText("简称曾用名")
private String shortUsedName;
@XText("固话")
private String tel;
@XText("传真")
private String fax;
@XText("手机")
private String mobile;
@XText("电子邮件")
private String email;
@XText("地址")
private String address;
@XText("国家")
private String country;
@XText("省")
private String province;
@XText("城市")
private String city;
@XText("县")
private String county;
@XText("邮编")
private String postcode;
@XText("备注")
private String remark;
@XText("是否删除")
private Integer beDeleted;
private Integer saleType;
private Integer industryType;
@XText("是否国内")
private Integer beDomestic;
@XText("是否重点客户")
private Integer beKeyCustomer;
@XText("是否为上游用户")
private Integer beUpLient;
@XText("是否为下游用户")
private Integer beDownClient;
@XText("是否为托运商")
private Integer beConsignor;
@XText("工厂类型-上游用户类型专有")
private String vendorType;
@XText("生效时间")
private Date effectTime;
@XText("结束时间")
private Date endTime;
@XText("地区")
private String region;
@XText("排序")
private Integer sort;
@XText("MDM编码")
private String mdmCode;
@XText("创建人")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("上下游用户类型")
private String clientType;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构id")
private String ouId;
public String getOuId() {
return ouId;
}
public void setOuId(String ouId) {
this.ouId = ouId;
}
public String getClientType() {
return clientType;
}
public void setClientType(String clientType) {
this.clientType = clientType;
}
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public String getClientCode() {
return this.clientCode;
}
public void setClientCode(String value) {
this.clientCode = value;
}
public String getClientName() {
return this.clientName;
}
public void setClientName(String value) {
this.clientName = value;
}
public String getClientShortAme() {
return this.clientShortAme;
}
public void setClientShortAme(String value) {
this.clientShortAme = value;
}
public String getUsedName() {
return this.usedName;
}
public void setUsedName(String value) {
this.usedName = value;
}
public String getShortUsedName() {
return this.shortUsedName;
}
public void setShortUsedName(String value) {
this.shortUsedName = value;
}
public String getTel() {
return this.tel;
}
public void setTel(String value) {
this.tel = value;
}
public String getFax() {
return this.fax;
}
public void setFax(String value) {
this.fax = value;
}
public String getMobile() {
return this.mobile;
}
public void setMobile(String value) {
this.mobile = value;
}
public String getEmail() {
return this.email;
}
public void setEmail(String value) {
this.email = value;
}
public String getAddress() {
return this.address;
}
public void setAddress(String value) {
this.address = value;
}
public String getCountry() {
return this.country;
}
public void setCountry(String value) {
this.country = value;
}
public String getProvince() {
return this.province;
}
public void setProvince(String value) {
this.province = value;
}
public String getCity() {
return this.city;
}
public void setCity(String value) {
this.city = value;
}
public String getCounty() {
return this.county;
}
public void setCounty(String value) {
this.county = value;
}
public String getPostcode() {
return this.postcode;
}
public void setPostcode(String value) {
this.postcode = value;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String value) {
this.remark = value;
}
public Integer getBeDeleted() {
return this.beDeleted;
}
public void setBeDeleted(Integer value) {
this.beDeleted = value;
}
public Integer getSaleType() {
return this.saleType;
}
public void setSaleType(Integer value) {
this.saleType = value;
}
public Integer getIndustryType() {
return this.industryType;
}
public void setIndustryType(Integer value) {
this.industryType = value;
}
public Integer getBeDomestic() {
return this.beDomestic;
}
public void setBeDomestic(Integer value) {
this.beDomestic = value;
}
public Integer getBeKeyCustomer() {
return this.beKeyCustomer;
}
public void setBeKeyCustomer(Integer value) {
this.beKeyCustomer = value;
}
public Integer getBeUpLient() {
return this.beUpLient;
}
public void setBeUpLient(Integer value) {
this.beUpLient = value;
}
public Integer getBeDownClient() {
return this.beDownClient;
}
public void setBeDownClient(Integer value) {
this.beDownClient = value;
}
public Integer getBeConsignor() {
return this.beConsignor;
}
public void setBeConsignor(Integer value) {
this.beConsignor = value;
}
public String getVendorType() {
return vendorType;
}
public void setVendorType(String vendorType) {
this.vendorType = vendorType;
}
public Date getEffectTime() {
return this.effectTime;
}
public void setEffectTime(Date value) {
this.effectTime = value;
}
public Date getEndTime() {
return this.endTime;
}
public void setEndTime(Date value) {
this.endTime = value;
}
public String getRegion() {
return this.region;
}
public void setRegion(String value) {
this.region = value;
}
public Integer getSort() {
return this.sort;
}
public void setSort(Integer value) {
this.sort = value;
}
public String getMdmCode() {
return this.mdmCode;
}
public void setMdmCode(String value) {
this.mdmCode = 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 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 Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date value) {
this.modifyTime = value;
}
}
package pps.core.base.service.data.base_client;
import xstartup.annotation.XText;
public class QueryBaseClientPullOutput {
@XText("主键")
private String id;
@XText("编码")
private String clientCode;
@XText("名称")
private String clientName;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getClientCode() {
return clientCode;
}
public void setClientCode(String clientCode) {
this.clientCode = clientCode;
}
public String getClientName() {
return clientName;
}
public void setClientName(String clientName) {
this.clientName = clientName;
}
}
package pps.core.base.service.data.base_data;
public class DeleteBaseDataOutput {
private Integer id;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
}
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