fix:设备业务配置增加字段
This commit is contained in:
@@ -40,6 +40,9 @@ public class DeviceConfigBusinessItemPageReqVO extends PageParam {
|
||||
@Schema(description = "责任人")
|
||||
private String dutyRemark;
|
||||
|
||||
@Schema(description = "填写方式")
|
||||
private String writeWay;
|
||||
|
||||
@Schema(description = "排序号")
|
||||
private Integer orderNo;
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package com.zt.plat.module.qms.resource.device.controller.vo;
|
||||
|
||||
import com.zt.plat.module.qms.core.aspect.annotation.Dict;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.*;
|
||||
import java.util.*;
|
||||
@@ -52,6 +53,11 @@ public class DeviceConfigBusinessItemRespVO {
|
||||
@ExcelProperty("责任人")
|
||||
private String dutyRemark;
|
||||
|
||||
@Dict(dicCode = "write_way")
|
||||
@Schema(description = "填写方式")
|
||||
@ExcelProperty("填写方式")
|
||||
private String writeWay;
|
||||
|
||||
@Schema(description = "排序号")
|
||||
@ExcelProperty("排序号")
|
||||
private Integer orderNo;
|
||||
|
||||
@@ -39,6 +39,9 @@ public class DeviceConfigBusinessItemSaveReqVO {
|
||||
@Schema(description = "责任人")
|
||||
private String dutyRemark;
|
||||
|
||||
@Schema(description = "填写方式")
|
||||
private String writeWay;
|
||||
|
||||
@Schema(description = "排序号")
|
||||
private Integer orderNo;
|
||||
|
||||
|
||||
@@ -73,6 +73,11 @@ public class DeviceConfigBusinessItemDO extends BusinessBaseDO {
|
||||
*/
|
||||
@TableField("DUTY_RMK")
|
||||
private String dutyRemark;
|
||||
/**
|
||||
* 填写方式
|
||||
*/
|
||||
@TableField("WR_WY")
|
||||
private String writeWay;
|
||||
/**
|
||||
* 排序号
|
||||
*/
|
||||
|
||||
@@ -26,6 +26,7 @@ public interface DeviceConfigBusinessItemMapper extends BaseMapperX<DeviceConfig
|
||||
.eqIfPresent(DeviceConfigBusinessItemDO::getItemMethod, reqVO.getItemMethod())
|
||||
.eqIfPresent(DeviceConfigBusinessItemDO::getFrequencyRemark, reqVO.getFrequencyRemark())
|
||||
.eqIfPresent(DeviceConfigBusinessItemDO::getDutyRemark, reqVO.getDutyRemark())
|
||||
.eqIfPresent(DeviceConfigBusinessItemDO::getWriteWay, reqVO.getWriteWay())
|
||||
.eqIfPresent(DeviceConfigBusinessItemDO::getOrderNo, reqVO.getOrderNo())
|
||||
.eqIfPresent(DeviceConfigBusinessItemDO::getSystemDepartmentCode, reqVO.getSystemDepartmentCode())
|
||||
.eqIfPresent(DeviceConfigBusinessItemDO::getRemark, reqVO.getRemark())
|
||||
|
||||
Reference in New Issue
Block a user