Commit 95b12713 authored by ZWT's avatar ZWT

feat(能源管理系统): 基础信息配置

1.修改基础信息配置--输电线路配置模块查询输电线路分页列表接口,优化代码;
2.修改基础信息配置--输电线路配置模块查询输电线路井口列表接口,优化代码;
3.修改基础信息配置--输电线路配置模块查询输电线路详情接口,优化代码;
4.修改基础信息配置--市电峰谷配置模块查询市电峰谷详情接口,优化代码;
5.修改基础信息配置模块字典工具类,优化代码;
6.修改基础信息配置--市电峰谷配置模块查询市电峰谷分页列表接口,优化代码;
7.修改task模块pom文件,添加space模块依赖引用;

BREAKING CHANGE: 无

Closes 无

[skip ci]
parent e152b282
package pps.core.space.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("space_interval_system_calibration_config")
public class SpaceIntervalSystemCalibrationConfigEnt implements Serializable {
@XText("ID")
@TableId(type = IdType.AUTO)
private String id;
@XText("是否删除(1_是;0_否)")
@TableField
private Integer isDeleted;
@XText("创建人ID")
@TableField
private String createById;
@XText("创建人名称")
@TableField
private String createByName;
@XText("创建时间")
@TableField
private Date createTime;
@XText("修改人ID")
@TableField
private String modifyById;
@XText("修改人名称")
@TableField
private String modifyByName;
@XText("修改时间")
@TableField
private Date modifyTime;
@XText("组织机构ID")
@TableField
private String ouId;
@XText("组织机构")
@TableField
private String ouName;
@XText("线路ID")
@TableField
private String lineId;
@XText("线路名称")
@TableField
private String lineName;
@XText("校准策略")
@TableField
private Integer calibrationCycle;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public Integer getCalibrationCycle() {
return this.calibrationCycle;
}
public void setCalibrationCycle(Integer value) {
this.calibrationCycle = value;
}
}
package pps.core.space.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import xstartup.annotation.XText;
import java.io.Serializable;
import java.util.Date;
public class SpaceIntervalSystemCalibrationConfigView implements Serializable {
@XText("ID")
@TableField
private String id;
@XText("是否删除(1_是;0_否)")
@TableField
private Integer isDeleted;
@XText("创建人ID")
@TableField
private String createById;
@XText("创建人名称")
@TableField
private String createByName;
@XText("创建时间")
@TableField
private Date createTime;
@XText("修改人ID")
@TableField
private String modifyById;
@XText("修改人名称")
@TableField
private String modifyByName;
@XText("修改时间")
@TableField
private Date modifyTime;
@XText("组织机构ID")
@TableField
private String ouId;
@XText("组织机构")
@TableField
private String ouName;
@XText("线路ID")
@TableField
private String lineId;
@XText("线路名称")
@TableField
private String lineName;
@XText("校准策略")
@TableField
private Integer calibrationCycle;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public Integer getCalibrationCycle() {
return this.calibrationCycle;
}
public void setCalibrationCycle(Integer value) {
this.calibrationCycle = value;
}
}
package pps.core.space.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("space_interval_system_calibration")
public class SpaceIntervalSystemCalibrationEnt implements Serializable {
@XText("ID")
@TableId(type = IdType.AUTO)
private String id;
@XText("是否删除(1_是;0_否)")
@TableField
private Integer isDeleted;
@XText("创建人ID")
@TableField
private String createById;
@XText("创建人名称")
@TableField
private String createByName;
@XText("创建时间")
@TableField
private Date createTime;
@XText("修改人ID")
@TableField
private String modifyById;
@XText("修改人名称")
@TableField
private String modifyByName;
@XText("修改时间")
@TableField
private Date modifyTime;
@XText("组织机构ID")
@TableField
private String ouId;
@XText("组织机构")
@TableField
private String ouName;
@XText("线路ID")
@TableField
private String lineId;
@XText("线路名称")
@TableField
private String lineName;
@XText("电网类型key(字典获取)")
@TableField
private String gridTypeKey;
@XText("电网类型name(字典获取)")
@TableField
private String gridTypeName;
@XText("制度名称")
@TableField
private String systemName;
@XText("执行开始时间")
@TableField
private String implementStartDate;
@XText("执行结束时间")
@TableField
private String implementEndDate;
@XText("校准日期")
@TableField
private String calibrationDate;
@XText("0未处理 1已处理")
@TableField
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import xstartup.annotation.XText;
import java.io.Serializable;
import java.util.Date;
public class SpaceIntervalSystemCalibrationView implements Serializable {
@XText("ID")
@TableField
private String id;
@XText("是否删除(1_是;0_否)")
@TableField
private Integer isDeleted;
@XText("创建人ID")
@TableField
private String createById;
@XText("创建人名称")
@TableField
private String createByName;
@XText("创建时间")
@TableField
private Date createTime;
@XText("修改人ID")
@TableField
private String modifyById;
@XText("修改人名称")
@TableField
private String modifyByName;
@XText("修改时间")
@TableField
private Date modifyTime;
@XText("组织机构ID")
@TableField
private String ouId;
@XText("组织机构")
@TableField
private String ouName;
@XText("线路ID")
@TableField
private String lineId;
@XText("线路名称")
@TableField
private String lineName;
@XText("电网类型key(字典获取)")
@TableField
private String gridTypeKey;
@XText("电网类型name(字典获取)")
@TableField
private String gridTypeName;
@XText("制度名称")
@TableField
private String systemName;
@XText("执行开始时间")
@TableField
private String implementStartDate;
@XText("执行结束时间")
@TableField
private String implementEndDate;
@XText("校准日期")
@TableField
private String calibrationDate;
@XText("0未处理 1已处理")
@TableField
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.module;
import pps.core.common.utils.ManifestComponentInfoHelper;
import xstartup.annotation.XText;
import xstartup.base.XContext;
import xstartup.base.XModule;
/**
* 间开制度模块
*
* @author ZWT
* @date 2023/08/29
*/
@XText("间开制度模块")
public class PpsCoreSpaceModule extends XModule {
protected PpsCoreSpaceModule() {
super(1010);
}
@Override
protected void onStarted(XContext context) {
ManifestComponentInfoHelper.init(this.getClass().getClassLoader());
}
}
\ No newline at end of file
package pps.core.space.service;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import pps.core.space.entity.SpaceIntervalSystemCalibrationConfigEnt;
import pps.core.space.entity.SpaceIntervalSystemCalibrationConfigView;
import pps.core.space.mapper.SpaceIntervalSystemCalibrationConfigMapper;
import pps.core.space.mapper.SpaceIntervalSystemCalibrationConfigViewMapper;
import pps.core.space.service.data.space_interval_system_calibration_config.*;
import xstartup.annotation.XService;
import xstartup.base.XContext;
import xstartup.base.data.CustomQueryInput;
import xstartup.base.util.XCopyUtils;
import xstartup.data.XPageResult;
import xstartup.data.XServiceResult;
import xstartup.data.XSingleResult;
import xstartup.error.XError;
import xstartup.feature.api.annotation.XApiAnonymous;
import xstartup.feature.api.annotation.XApiGet;
import xstartup.feature.api.annotation.XApiPost;
import xstartup.feature.mybatis.helper.XMapperHelper;
import java.util.List;
@XService
public class SpaceIntervalSystemCalibrationConfigService {
@XApiAnonymous
@XApiPost
public XServiceResult createSpaceIntervalSystemCalibrationConfig(XContext context, CreateSpaceIntervalSystemCalibrationConfigInput input) {
SpaceIntervalSystemCalibrationConfigMapper mapper = context.getBean(SpaceIntervalSystemCalibrationConfigMapper.class);
SpaceIntervalSystemCalibrationConfigEnt entity = new SpaceIntervalSystemCalibrationConfigEnt();
XCopyUtils.copyObject(input, entity);
mapper.insert(entity);
return XServiceResult.OK;
}
@XApiAnonymous
@XApiPost
public XServiceResult updateSpaceIntervalSystemCalibrationConfig(XContext context, UpdateSpaceIntervalSystemCalibrationConfigInput input) {
SpaceIntervalSystemCalibrationConfigMapper mapper = context.getBean(SpaceIntervalSystemCalibrationConfigMapper.class);
QueryWrapper<SpaceIntervalSystemCalibrationConfigEnt> queryWrapper = new QueryWrapper<>();
queryWrapper.lambda().eq(SpaceIntervalSystemCalibrationConfigEnt::getId, input.getId());
SpaceIntervalSystemCalibrationConfigEnt entity = mapper.selectOne(queryWrapper);
if (entity == null) {
return XServiceResult.error(context, XError.NotFound);
}
XCopyUtils.copyObject(input, entity);
mapper.updateById(entity);
return XServiceResult.OK;
}
@XApiAnonymous
@XApiPost
public XServiceResult deleteSpaceIntervalSystemCalibrationConfig(XContext context, DeleteSpaceIntervalSystemCalibrationConfigInput input) {
SpaceIntervalSystemCalibrationConfigMapper mapper = context.getBean(SpaceIntervalSystemCalibrationConfigMapper.class);
QueryWrapper<SpaceIntervalSystemCalibrationConfigEnt> queryWrapper = new QueryWrapper<>();
queryWrapper.lambda().eq(SpaceIntervalSystemCalibrationConfigEnt::getId, input.getId());
SpaceIntervalSystemCalibrationConfigEnt entity = mapper.selectOne(queryWrapper);
if (entity == null) {
return XServiceResult.error(context, XError.NotFound);
}
mapper.deleteById(entity);
return XServiceResult.OK;
}
@XApiAnonymous
@XApiGet
public XSingleResult<GetSpaceIntervalSystemCalibrationConfigOutput> getSpaceIntervalSystemCalibrationConfig(XContext context, GetSpaceIntervalSystemCalibrationConfigInput input) {
SpaceIntervalSystemCalibrationConfigMapper mapper = context.getBean(SpaceIntervalSystemCalibrationConfigMapper.class);
QueryWrapper<SpaceIntervalSystemCalibrationConfigEnt> queryWrapper = new QueryWrapper<>();
queryWrapper.lambda().eq(SpaceIntervalSystemCalibrationConfigEnt::getId, input.getId());
SpaceIntervalSystemCalibrationConfigEnt entity = mapper.selectOne(queryWrapper);
if (entity == null) {
return XSingleResult.error(context, XError.NotFound);
}
GetSpaceIntervalSystemCalibrationConfigOutput output = new GetSpaceIntervalSystemCalibrationConfigOutput();
XCopyUtils.copyObject(entity, output);
return XSingleResult.success(output);
}
@XApiAnonymous
@XApiGet
public XPageResult<QuerySpaceIntervalSystemCalibrationConfigOutput> querySpaceIntervalSystemCalibrationConfig(XContext context, QuerySpaceIntervalSystemCalibrationConfigInput input) {
SpaceIntervalSystemCalibrationConfigMapper mapper = context.getBean(SpaceIntervalSystemCalibrationConfigMapper.class);
QueryWrapper<SpaceIntervalSystemCalibrationConfigEnt> queryWrapper = new QueryWrapper<>();
queryWrapper.lambda().like(SpaceIntervalSystemCalibrationConfigEnt::getId, input.getId())
.eq(SpaceIntervalSystemCalibrationConfigEnt::getIsDeleted, input.getIsDeleted())
.like(SpaceIntervalSystemCalibrationConfigEnt::getCreateById, input.getCreateById())
.like(SpaceIntervalSystemCalibrationConfigEnt::getCreateByName, input.getCreateByName())
.eq(SpaceIntervalSystemCalibrationConfigEnt::getCreateTime, input.getCreateTime())
.like(SpaceIntervalSystemCalibrationConfigEnt::getModifyById, input.getModifyById())
.like(SpaceIntervalSystemCalibrationConfigEnt::getModifyByName, input.getModifyByName())
.eq(SpaceIntervalSystemCalibrationConfigEnt::getModifyTime, input.getModifyTime())
.like(SpaceIntervalSystemCalibrationConfigEnt::getOuId, input.getOuId())
.like(SpaceIntervalSystemCalibrationConfigEnt::getOuName, input.getOuName())
.like(SpaceIntervalSystemCalibrationConfigEnt::getLineId, input.getLineId())
.like(SpaceIntervalSystemCalibrationConfigEnt::getLineName, input.getLineName())
.eq(SpaceIntervalSystemCalibrationConfigEnt::getCalibrationCycle, input.getCalibrationCycle());
return XMapperHelper.query(mapper, input, queryWrapper, QuerySpaceIntervalSystemCalibrationConfigOutput.class);
}
@XApiAnonymous
@XApiGet
public XPageResult<QuerySpaceIntervalSystemCalibrationConfigOutput> dynamicQuerySpaceIntervalSystemCalibrationConfig(XContext context, CustomQueryInput input) {
SpaceIntervalSystemCalibrationConfigMapper mapper = context.getBean(SpaceIntervalSystemCalibrationConfigMapper.class);
return XMapperHelper.query(mapper, input, SpaceIntervalSystemCalibrationConfigEnt.class, QuerySpaceIntervalSystemCalibrationConfigOutput.class);
}
@XApiAnonymous
@XApiGet
public XSingleResult<GetSpaceIntervalSystemCalibrationConfigViewOutput> getSpaceIntervalSystemCalibrationConfigView(XContext context, GetSpaceIntervalSystemCalibrationConfigViewInput input) {
SpaceIntervalSystemCalibrationConfigViewMapper mapper = context.getBean(SpaceIntervalSystemCalibrationConfigViewMapper.class);
SpaceIntervalSystemCalibrationConfigView record = new SpaceIntervalSystemCalibrationConfigView();
XCopyUtils.copyObject(input, record);
SpaceIntervalSystemCalibrationConfigView view = mapper.selectOne(record);
if (view == null) {
return XSingleResult.error(context, XError.NotFound);
}
GetSpaceIntervalSystemCalibrationConfigViewOutput output = new GetSpaceIntervalSystemCalibrationConfigViewOutput();
XCopyUtils.copyObject(view, output);
return XSingleResult.success(output);
}
@XApiAnonymous
@XApiGet
public XPageResult<QuerySpaceIntervalSystemCalibrationConfigViewOutput> querySpaceIntervalSystemCalibrationConfigView(XContext context, QuerySpaceIntervalSystemCalibrationConfigViewInput input) {
SpaceIntervalSystemCalibrationConfigViewMapper mapper = context.getBean(SpaceIntervalSystemCalibrationConfigViewMapper.class);
SpaceIntervalSystemCalibrationConfigView record = new SpaceIntervalSystemCalibrationConfigView();
XCopyUtils.copyObject(input, record);
PageHelper.startPage(input.getPage(), input.getLimit());
List<SpaceIntervalSystemCalibrationConfigView> list = mapper.selectList(record);
PageInfo<SpaceIntervalSystemCalibrationConfigView> pageInfo = new PageInfo<>(list);
List<QuerySpaceIntervalSystemCalibrationConfigViewOutput> outputs = XCopyUtils.copyNewList(pageInfo.getList(), QuerySpaceIntervalSystemCalibrationConfigViewOutput.class);
return XPageResult.success(outputs, input, pageInfo.getTotal());
}
}
package pps.core.space.service;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import pps.core.space.entity.SpaceIntervalSystemCalibrationEnt;
import pps.core.space.entity.SpaceIntervalSystemCalibrationView;
import pps.core.space.mapper.SpaceIntervalSystemCalibrationMapper;
import pps.core.space.mapper.SpaceIntervalSystemCalibrationViewMapper;
import pps.core.space.service.data.space_interval_system_calibration.*;
import xstartup.annotation.XService;
import xstartup.base.XContext;
import xstartup.base.data.CustomQueryInput;
import xstartup.base.util.XCopyUtils;
import xstartup.data.XPageResult;
import xstartup.data.XServiceResult;
import xstartup.data.XSingleResult;
import xstartup.error.XError;
import xstartup.feature.api.annotation.XApiAnonymous;
import xstartup.feature.api.annotation.XApiGet;
import xstartup.feature.api.annotation.XApiPost;
import xstartup.feature.mybatis.helper.XMapperHelper;
import java.util.List;
@XService
public class SpaceIntervalSystemCalibrationService {
@XApiAnonymous
@XApiPost
public XServiceResult createSpaceIntervalSystemCalibration(XContext context, CreateSpaceIntervalSystemCalibrationInput input) {
SpaceIntervalSystemCalibrationMapper mapper = context.getBean(SpaceIntervalSystemCalibrationMapper.class);
SpaceIntervalSystemCalibrationEnt entity = new SpaceIntervalSystemCalibrationEnt();
XCopyUtils.copyObject(input, entity);
mapper.insert(entity);
return XServiceResult.OK;
}
@XApiAnonymous
@XApiPost
public XServiceResult updateSpaceIntervalSystemCalibration(XContext context, UpdateSpaceIntervalSystemCalibrationInput input) {
SpaceIntervalSystemCalibrationMapper mapper = context.getBean(SpaceIntervalSystemCalibrationMapper.class);
QueryWrapper<SpaceIntervalSystemCalibrationEnt> queryWrapper = new QueryWrapper<>();
queryWrapper.lambda().eq(SpaceIntervalSystemCalibrationEnt::getId, input.getId());
SpaceIntervalSystemCalibrationEnt entity = mapper.selectOne(queryWrapper);
if (entity == null) {
return XServiceResult.error(context, XError.NotFound);
}
XCopyUtils.copyObject(input, entity);
mapper.updateById(entity);
return XServiceResult.OK;
}
@XApiAnonymous
@XApiPost
public XServiceResult deleteSpaceIntervalSystemCalibration(XContext context, DeleteSpaceIntervalSystemCalibrationInput input) {
SpaceIntervalSystemCalibrationMapper mapper = context.getBean(SpaceIntervalSystemCalibrationMapper.class);
QueryWrapper<SpaceIntervalSystemCalibrationEnt> queryWrapper = new QueryWrapper<>();
queryWrapper.lambda().eq(SpaceIntervalSystemCalibrationEnt::getId, input.getId());
SpaceIntervalSystemCalibrationEnt entity = mapper.selectOne(queryWrapper);
if (entity == null) {
return XServiceResult.error(context, XError.NotFound);
}
mapper.deleteById(entity);
return XServiceResult.OK;
}
@XApiAnonymous
@XApiGet
public XSingleResult<GetSpaceIntervalSystemCalibrationOutput> getSpaceIntervalSystemCalibration(XContext context, GetSpaceIntervalSystemCalibrationInput input) {
SpaceIntervalSystemCalibrationMapper mapper = context.getBean(SpaceIntervalSystemCalibrationMapper.class);
QueryWrapper<SpaceIntervalSystemCalibrationEnt> queryWrapper = new QueryWrapper<>();
queryWrapper.lambda().eq(SpaceIntervalSystemCalibrationEnt::getId, input.getId());
SpaceIntervalSystemCalibrationEnt entity = mapper.selectOne(queryWrapper);
if (entity == null) {
return XSingleResult.error(context, XError.NotFound);
}
GetSpaceIntervalSystemCalibrationOutput output = new GetSpaceIntervalSystemCalibrationOutput();
XCopyUtils.copyObject(entity, output);
return XSingleResult.success(output);
}
@XApiAnonymous
@XApiGet
public XPageResult<QuerySpaceIntervalSystemCalibrationOutput> querySpaceIntervalSystemCalibration(XContext context, QuerySpaceIntervalSystemCalibrationInput input) {
SpaceIntervalSystemCalibrationMapper mapper = context.getBean(SpaceIntervalSystemCalibrationMapper.class);
QueryWrapper<SpaceIntervalSystemCalibrationEnt> queryWrapper = new QueryWrapper<>();
queryWrapper.lambda().like(SpaceIntervalSystemCalibrationEnt::getId, input.getId())
.eq(SpaceIntervalSystemCalibrationEnt::getIsDeleted, input.getIsDeleted())
.like(SpaceIntervalSystemCalibrationEnt::getCreateById, input.getCreateById())
.like(SpaceIntervalSystemCalibrationEnt::getCreateByName, input.getCreateByName())
.eq(SpaceIntervalSystemCalibrationEnt::getCreateTime, input.getCreateTime())
.like(SpaceIntervalSystemCalibrationEnt::getModifyById, input.getModifyById())
.like(SpaceIntervalSystemCalibrationEnt::getModifyByName, input.getModifyByName())
.eq(SpaceIntervalSystemCalibrationEnt::getModifyTime, input.getModifyTime())
.like(SpaceIntervalSystemCalibrationEnt::getOuId, input.getOuId())
.like(SpaceIntervalSystemCalibrationEnt::getOuName, input.getOuName())
.like(SpaceIntervalSystemCalibrationEnt::getLineId, input.getLineId())
.like(SpaceIntervalSystemCalibrationEnt::getLineName, input.getLineName())
.like(SpaceIntervalSystemCalibrationEnt::getGridTypeKey, input.getGridTypeKey())
.like(SpaceIntervalSystemCalibrationEnt::getGridTypeName, input.getGridTypeName())
.like(SpaceIntervalSystemCalibrationEnt::getSystemName, input.getSystemName())
.like(SpaceIntervalSystemCalibrationEnt::getImplementStartDate, input.getImplementStartDate())
.like(SpaceIntervalSystemCalibrationEnt::getImplementEndDate, input.getImplementEndDate())
.like(SpaceIntervalSystemCalibrationEnt::getCalibrationDate, input.getCalibrationDate())
.eq(SpaceIntervalSystemCalibrationEnt::getImplementStatus, input.getImplementStatus());
return XMapperHelper.query(mapper, input, queryWrapper, QuerySpaceIntervalSystemCalibrationOutput.class);
}
@XApiAnonymous
@XApiGet
public XPageResult<QuerySpaceIntervalSystemCalibrationOutput> dynamicQuerySpaceIntervalSystemCalibration(XContext context, CustomQueryInput input) {
SpaceIntervalSystemCalibrationMapper mapper = context.getBean(SpaceIntervalSystemCalibrationMapper.class);
return XMapperHelper.query(mapper, input, SpaceIntervalSystemCalibrationEnt.class, QuerySpaceIntervalSystemCalibrationOutput.class);
}
@XApiAnonymous
@XApiGet
public XSingleResult<GetSpaceIntervalSystemCalibrationViewOutput> getSpaceIntervalSystemCalibrationView(XContext context, GetSpaceIntervalSystemCalibrationViewInput input) {
SpaceIntervalSystemCalibrationViewMapper mapper = context.getBean(SpaceIntervalSystemCalibrationViewMapper.class);
SpaceIntervalSystemCalibrationView record = new SpaceIntervalSystemCalibrationView();
XCopyUtils.copyObject(input, record);
SpaceIntervalSystemCalibrationView view = mapper.selectOne(record);
if (view == null) {
return XSingleResult.error(context, XError.NotFound);
}
GetSpaceIntervalSystemCalibrationViewOutput output = new GetSpaceIntervalSystemCalibrationViewOutput();
XCopyUtils.copyObject(view, output);
return XSingleResult.success(output);
}
@XApiAnonymous
@XApiGet
public XPageResult<QuerySpaceIntervalSystemCalibrationViewOutput> querySpaceIntervalSystemCalibrationView(XContext context, QuerySpaceIntervalSystemCalibrationViewInput input) {
SpaceIntervalSystemCalibrationViewMapper mapper = context.getBean(SpaceIntervalSystemCalibrationViewMapper.class);
SpaceIntervalSystemCalibrationView record = new SpaceIntervalSystemCalibrationView();
XCopyUtils.copyObject(input, record);
PageHelper.startPage(input.getPage(), input.getLimit());
List<SpaceIntervalSystemCalibrationView> list = mapper.selectList(record);
PageInfo<SpaceIntervalSystemCalibrationView> pageInfo = new PageInfo<>(list);
List<QuerySpaceIntervalSystemCalibrationViewOutput> outputs = XCopyUtils.copyNewList(pageInfo.getList(), QuerySpaceIntervalSystemCalibrationViewOutput.class);
return XPageResult.success(outputs, input, pageInfo.getTotal());
}
}
package pps.core.space.service.data.space_interval_system_calibration;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
public class CreateSpaceIntervalSystemCalibrationInput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("电网类型key(字典获取)")
private String gridTypeKey;
@XText("电网类型name(字典获取)")
private String gridTypeName;
@XText("制度名称")
private String systemName;
@XText("执行开始时间")
private String implementStartDate;
@XText("执行结束时间")
private String implementEndDate;
@XText("校准日期")
private String calibrationDate;
@XText("0未处理 1已处理")
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.service.data.space_interval_system_calibration;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
public class CreateSpaceIntervalSystemCalibrationOutput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("电网类型key(字典获取)")
private String gridTypeKey;
@XText("电网类型name(字典获取)")
private String gridTypeName;
@XText("制度名称")
private String systemName;
@XText("执行开始时间")
private String implementStartDate;
@XText("执行结束时间")
private String implementEndDate;
@XText("校准日期")
private String calibrationDate;
@XText("0未处理 1已处理")
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.service.data.space_interval_system_calibration;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
public class DeleteSpaceIntervalSystemCalibrationInput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("电网类型key(字典获取)")
private String gridTypeKey;
@XText("电网类型name(字典获取)")
private String gridTypeName;
@XText("制度名称")
private String systemName;
@XText("执行开始时间")
private String implementStartDate;
@XText("执行结束时间")
private String implementEndDate;
@XText("校准日期")
private String calibrationDate;
@XText("0未处理 1已处理")
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.service.data.space_interval_system_calibration;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
public class DeleteSpaceIntervalSystemCalibrationOutput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("电网类型key(字典获取)")
private String gridTypeKey;
@XText("电网类型name(字典获取)")
private String gridTypeName;
@XText("制度名称")
private String systemName;
@XText("执行开始时间")
private String implementStartDate;
@XText("执行结束时间")
private String implementEndDate;
@XText("校准日期")
private String calibrationDate;
@XText("0未处理 1已处理")
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.service.data.space_interval_system_calibration;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
public class DynamicQuerySpaceIntervalSystemCalibrationInput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("电网类型key(字典获取)")
private String gridTypeKey;
@XText("电网类型name(字典获取)")
private String gridTypeName;
@XText("制度名称")
private String systemName;
@XText("执行开始时间")
private String implementStartDate;
@XText("执行结束时间")
private String implementEndDate;
@XText("校准日期")
private String calibrationDate;
@XText("0未处理 1已处理")
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.service.data.space_interval_system_calibration;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
public class DynamicQuerySpaceIntervalSystemCalibrationOutput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("电网类型key(字典获取)")
private String gridTypeKey;
@XText("电网类型name(字典获取)")
private String gridTypeName;
@XText("制度名称")
private String systemName;
@XText("执行开始时间")
private String implementStartDate;
@XText("执行结束时间")
private String implementEndDate;
@XText("校准日期")
private String calibrationDate;
@XText("0未处理 1已处理")
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.service.data.space_interval_system_calibration;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
public class DynamicQuerySpaceIntervalSystemCalibrationViewOutput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("电网类型key(字典获取)")
private String gridTypeKey;
@XText("电网类型name(字典获取)")
private String gridTypeName;
@XText("制度名称")
private String systemName;
@XText("执行开始时间")
private String implementStartDate;
@XText("执行结束时间")
private String implementEndDate;
@XText("校准日期")
private String calibrationDate;
@XText("0未处理 1已处理")
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.service.data.space_interval_system_calibration;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
public class GetSpaceIntervalSystemCalibrationInput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("电网类型key(字典获取)")
private String gridTypeKey;
@XText("电网类型name(字典获取)")
private String gridTypeName;
@XText("制度名称")
private String systemName;
@XText("执行开始时间")
private String implementStartDate;
@XText("执行结束时间")
private String implementEndDate;
@XText("校准日期")
private String calibrationDate;
@XText("0未处理 1已处理")
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.service.data.space_interval_system_calibration;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
public class GetSpaceIntervalSystemCalibrationOutput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("电网类型key(字典获取)")
private String gridTypeKey;
@XText("电网类型name(字典获取)")
private String gridTypeName;
@XText("制度名称")
private String systemName;
@XText("执行开始时间")
private String implementStartDate;
@XText("执行结束时间")
private String implementEndDate;
@XText("校准日期")
private String calibrationDate;
@XText("0未处理 1已处理")
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.service.data.space_interval_system_calibration;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
public class GetSpaceIntervalSystemCalibrationViewInput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("电网类型key(字典获取)")
private String gridTypeKey;
@XText("电网类型name(字典获取)")
private String gridTypeName;
@XText("制度名称")
private String systemName;
@XText("执行开始时间")
private String implementStartDate;
@XText("执行结束时间")
private String implementEndDate;
@XText("校准日期")
private String calibrationDate;
@XText("0未处理 1已处理")
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.service.data.space_interval_system_calibration;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
public class GetSpaceIntervalSystemCalibrationViewOutput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("电网类型key(字典获取)")
private String gridTypeKey;
@XText("电网类型name(字典获取)")
private String gridTypeName;
@XText("制度名称")
private String systemName;
@XText("执行开始时间")
private String implementStartDate;
@XText("执行结束时间")
private String implementEndDate;
@XText("校准日期")
private String calibrationDate;
@XText("0未处理 1已处理")
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.service.data.space_interval_system_calibration;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
import xstartup.base.data.XPageInput;
public class QuerySpaceIntervalSystemCalibrationInput extends XPageInput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("电网类型key(字典获取)")
private String gridTypeKey;
@XText("电网类型name(字典获取)")
private String gridTypeName;
@XText("制度名称")
private String systemName;
@XText("执行开始时间")
private String implementStartDate;
@XText("执行结束时间")
private String implementEndDate;
@XText("校准日期")
private String calibrationDate;
@XText("0未处理 1已处理")
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.service.data.space_interval_system_calibration;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
import xstartup.base.data.XPageInput;
public class QuerySpaceIntervalSystemCalibrationOutput extends XPageInput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("电网类型key(字典获取)")
private String gridTypeKey;
@XText("电网类型name(字典获取)")
private String gridTypeName;
@XText("制度名称")
private String systemName;
@XText("执行开始时间")
private String implementStartDate;
@XText("执行结束时间")
private String implementEndDate;
@XText("校准日期")
private String calibrationDate;
@XText("0未处理 1已处理")
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.service.data.space_interval_system_calibration;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
import xstartup.base.data.XPageInput;
public class QuerySpaceIntervalSystemCalibrationViewInput extends XPageInput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("电网类型key(字典获取)")
private String gridTypeKey;
@XText("电网类型name(字典获取)")
private String gridTypeName;
@XText("制度名称")
private String systemName;
@XText("执行开始时间")
private String implementStartDate;
@XText("执行结束时间")
private String implementEndDate;
@XText("校准日期")
private String calibrationDate;
@XText("0未处理 1已处理")
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.service.data.space_interval_system_calibration;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
import xstartup.base.data.XPageInput;
public class QuerySpaceIntervalSystemCalibrationViewOutput extends XPageInput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("电网类型key(字典获取)")
private String gridTypeKey;
@XText("电网类型name(字典获取)")
private String gridTypeName;
@XText("制度名称")
private String systemName;
@XText("执行开始时间")
private String implementStartDate;
@XText("执行结束时间")
private String implementEndDate;
@XText("校准日期")
private String calibrationDate;
@XText("0未处理 1已处理")
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.service.data.space_interval_system_calibration;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
public class UpdateSpaceIntervalSystemCalibrationInput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("电网类型key(字典获取)")
private String gridTypeKey;
@XText("电网类型name(字典获取)")
private String gridTypeName;
@XText("制度名称")
private String systemName;
@XText("执行开始时间")
private String implementStartDate;
@XText("执行结束时间")
private String implementEndDate;
@XText("校准日期")
private String calibrationDate;
@XText("0未处理 1已处理")
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.service.data.space_interval_system_calibration;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
public class UpdateSpaceIntervalSystemCalibrationOutput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("电网类型key(字典获取)")
private String gridTypeKey;
@XText("电网类型name(字典获取)")
private String gridTypeName;
@XText("制度名称")
private String systemName;
@XText("执行开始时间")
private String implementStartDate;
@XText("执行结束时间")
private String implementEndDate;
@XText("校准日期")
private String calibrationDate;
@XText("0未处理 1已处理")
private Integer implementStatus;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public String getGridTypeKey() {
return this.gridTypeKey;
}
public void setGridTypeKey(String value) {
this.gridTypeKey = value;
}
public String getGridTypeName() {
return this.gridTypeName;
}
public void setGridTypeName(String value) {
this.gridTypeName = value;
}
public String getSystemName() {
return this.systemName;
}
public void setSystemName(String value) {
this.systemName = value;
}
public String getImplementStartDate() {
return this.implementStartDate;
}
public void setImplementStartDate(String value) {
this.implementStartDate = value;
}
public String getImplementEndDate() {
return this.implementEndDate;
}
public void setImplementEndDate(String value) {
this.implementEndDate = value;
}
public String getCalibrationDate() {
return this.calibrationDate;
}
public void setCalibrationDate(String value) {
this.calibrationDate = value;
}
public Integer getImplementStatus() {
return this.implementStatus;
}
public void setImplementStatus(Integer value) {
this.implementStatus = value;
}
}
package pps.core.space.service.data.space_interval_system_calibration_config;
import xstartup.annotation.XText;
import java.util.Date;
import java.math.BigDecimal;
public class CreateSpaceIntervalSystemCalibrationConfigInput {
@XText("ID")
private String id;
@XText("是否删除(1_是;0_否)")
private Integer isDeleted;
@XText("创建人ID")
private String createById;
@XText("创建人名称")
private String createByName;
@XText("创建时间")
private Date createTime;
@XText("修改人ID")
private String modifyById;
@XText("修改人名称")
private String modifyByName;
@XText("修改时间")
private Date modifyTime;
@XText("组织机构ID")
private String ouId;
@XText("组织机构")
private String ouName;
@XText("线路ID")
private String lineId;
@XText("线路名称")
private String lineName;
@XText("校准策略")
private Integer calibrationCycle;
public String getId() {
return this.id;
}
public void setId(String value) {
this.id = value;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer value) {
this.isDeleted = 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;
}
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 String getLineId() {
return this.lineId;
}
public void setLineId(String value) {
this.lineId = value;
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String value) {
this.lineName = value;
}
public Integer getCalibrationCycle() {
return this.calibrationCycle;
}
public void setCalibrationCycle(Integer value) {
this.calibrationCycle = value;
}
}
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