person
parent
ba382e5d6f
commit
32cdda3115
|
|
@ -1,3 +1,11 @@
|
||||||
-- org_equipment 表新增 设备价值 字段
|
-- org_equipment 表新增 设备价值 字段
|
||||||
ALTER TABLE `org_equipment`
|
ALTER TABLE `org_equipment`
|
||||||
ADD COLUMN `equipment_value` decimal(14, 2) NULL COMMENT '设备价值' AFTER `manufacturer`;
|
ADD COLUMN `equipment_value` decimal(14, 2) NULL COMMENT '设备价值' AFTER `manufacturer`;
|
||||||
|
|
||||||
|
-- qual_filing_equipment 表新增 设备价值 字段
|
||||||
|
ALTER TABLE `qual_filing_equipment`
|
||||||
|
ADD COLUMN `equipment_value` decimal(14, 2) NULL COMMENT '设备价值' AFTER `manufacturer`;
|
||||||
|
|
||||||
|
-- qual_filing_equipment_change 表新增 设备价值 字段
|
||||||
|
ALTER TABLE `qual_filing_equipment_change`
|
||||||
|
ADD COLUMN `equipment_value` decimal(14, 2) NULL COMMENT '设备价值' AFTER `manufacturer`;
|
||||||
|
|
|
||||||
|
|
@ -111,8 +111,6 @@ public class OrgPersonnelExecutor implements OrgPersonnelApi {
|
||||||
private boolean gbsUserSyncFailFast;
|
private boolean gbsUserSyncFailFast;
|
||||||
@Value("${template.personnel.import.url:}")
|
@Value("${template.personnel.import.url:}")
|
||||||
private String personImportTemplateUrl;
|
private String personImportTemplateUrl;
|
||||||
@Autowired
|
|
||||||
private OrgPersonnelMapper orgPersonnelMapper;
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -73,6 +73,11 @@ public class QualFilingEquipmentChangeAddCmd implements Serializable {
|
||||||
@ApiModelProperty(value = "厂家")
|
@ApiModelProperty(value = "厂家")
|
||||||
@Size(max = 512, message = "厂家不能超过512个字符")
|
@Size(max = 512, message = "厂家不能超过512个字符")
|
||||||
private String manufacturer;
|
private String manufacturer;
|
||||||
|
/**
|
||||||
|
* 设备价值
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "设备价值")
|
||||||
|
private BigDecimal equipmentValue;
|
||||||
/**
|
/**
|
||||||
* 设备流量说明
|
* 设备流量说明
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -67,6 +67,11 @@ public class QualFilingEquipmentChangeUpdateCmd implements Serializable {
|
||||||
*/
|
*/
|
||||||
@ApiModelProperty(value = "厂家")
|
@ApiModelProperty(value = "厂家")
|
||||||
private String manufacturer;
|
private String manufacturer;
|
||||||
|
/**
|
||||||
|
* 设备价值
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "设备价值")
|
||||||
|
private BigDecimal equipmentValue;
|
||||||
/**
|
/**
|
||||||
* 设备流量说明
|
* 设备流量说明
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -63,6 +63,11 @@ public class QualFilingEquipmentChangeCo extends ClientObject {
|
||||||
*/
|
*/
|
||||||
@ApiModelProperty(value = "厂家")
|
@ApiModelProperty(value = "厂家")
|
||||||
private String manufacturer;
|
private String manufacturer;
|
||||||
|
/**
|
||||||
|
* 设备价值
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "设备价值")
|
||||||
|
private BigDecimal equipmentValue;
|
||||||
/**
|
/**
|
||||||
* 设备流量说明
|
* 设备流量说明
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -43,6 +43,9 @@ public class QualFilingEquipmentCO {
|
||||||
@ApiModelProperty(value = "生产厂家")
|
@ApiModelProperty(value = "生产厂家")
|
||||||
private String manufacturer;
|
private String manufacturer;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "设备价值")
|
||||||
|
private BigDecimal equipmentValue;
|
||||||
|
|
||||||
@ApiModelProperty(value = "流量描述")
|
@ApiModelProperty(value = "流量描述")
|
||||||
private String flowDesc;
|
private String flowDesc;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -33,6 +33,9 @@ public class QualFilingEquipmentAddCmd {
|
||||||
@ApiModelProperty(value = "厂家")
|
@ApiModelProperty(value = "厂家")
|
||||||
private String manufacturer;
|
private String manufacturer;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "设备价值")
|
||||||
|
private BigDecimal equipmentValue;
|
||||||
|
|
||||||
@ApiModelProperty(value = "设备流量说明")
|
@ApiModelProperty(value = "设备流量说明")
|
||||||
private String flowDesc;
|
private String flowDesc;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,9 @@ public class QualFilingEquipmentModifyCmd {
|
||||||
@ApiModelProperty(value = "厂家")
|
@ApiModelProperty(value = "厂家")
|
||||||
private String manufacturer;
|
private String manufacturer;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "设备价值")
|
||||||
|
private BigDecimal equipmentValue;
|
||||||
|
|
||||||
@ApiModelProperty(value = "设备流量说明")
|
@ApiModelProperty(value = "设备流量说明")
|
||||||
private String flowDesc;
|
private String flowDesc;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -58,6 +58,10 @@ public class QualFilingEquipmentChangeE extends BaseE {
|
||||||
* 厂家
|
* 厂家
|
||||||
*/
|
*/
|
||||||
private String manufacturer;
|
private String manufacturer;
|
||||||
|
/**
|
||||||
|
* 设备价值
|
||||||
|
*/
|
||||||
|
private BigDecimal equipmentValue;
|
||||||
/**
|
/**
|
||||||
* 设备流量说明
|
* 设备流量说明
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -43,6 +43,9 @@ public class QualFilingEquipmentEntity {
|
||||||
/** 厂家 */
|
/** 厂家 */
|
||||||
private String manufacturer;
|
private String manufacturer;
|
||||||
|
|
||||||
|
/** 设备价值 */
|
||||||
|
private BigDecimal equipmentValue;
|
||||||
|
|
||||||
/** 设备流量说明 */
|
/** 设备流量说明 */
|
||||||
private String flowDesc;
|
private String flowDesc;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@ public class QualFilingEquipmentDO {
|
||||||
private String deviceTypeCode;
|
private String deviceTypeCode;
|
||||||
private String deviceTypeName;
|
private String deviceTypeName;
|
||||||
private String manufacturer;
|
private String manufacturer;
|
||||||
|
private BigDecimal equipmentValue;
|
||||||
private String flowDesc;
|
private String flowDesc;
|
||||||
private BigDecimal minFlow;
|
private BigDecimal minFlow;
|
||||||
private BigDecimal maxFlow;
|
private BigDecimal maxFlow;
|
||||||
|
|
|
||||||
|
|
@ -97,6 +97,7 @@ public class QualFilingEquipmentGatewayImpl implements QualFilingEquipmentGatewa
|
||||||
dataObject.setDeviceTypeCode(entity.getDeviceTypeCode());
|
dataObject.setDeviceTypeCode(entity.getDeviceTypeCode());
|
||||||
dataObject.setDeviceTypeName(entity.getDeviceTypeName());
|
dataObject.setDeviceTypeName(entity.getDeviceTypeName());
|
||||||
dataObject.setManufacturer(entity.getManufacturer());
|
dataObject.setManufacturer(entity.getManufacturer());
|
||||||
|
dataObject.setEquipmentValue(entity.getEquipmentValue());
|
||||||
dataObject.setFlowDesc(entity.getFlowDesc());
|
dataObject.setFlowDesc(entity.getFlowDesc());
|
||||||
dataObject.setMinFlow(entity.getMinFlow());
|
dataObject.setMinFlow(entity.getMinFlow());
|
||||||
dataObject.setMaxFlow(entity.getMaxFlow());
|
dataObject.setMaxFlow(entity.getMaxFlow());
|
||||||
|
|
@ -125,6 +126,7 @@ public class QualFilingEquipmentGatewayImpl implements QualFilingEquipmentGatewa
|
||||||
entity.setDeviceTypeCode(dataObject.getDeviceTypeCode());
|
entity.setDeviceTypeCode(dataObject.getDeviceTypeCode());
|
||||||
entity.setDeviceTypeName(dataObject.getDeviceTypeName());
|
entity.setDeviceTypeName(dataObject.getDeviceTypeName());
|
||||||
entity.setManufacturer(dataObject.getManufacturer());
|
entity.setManufacturer(dataObject.getManufacturer());
|
||||||
|
entity.setEquipmentValue(dataObject.getEquipmentValue());
|
||||||
entity.setFlowDesc(dataObject.getFlowDesc());
|
entity.setFlowDesc(dataObject.getFlowDesc());
|
||||||
entity.setMinFlow(dataObject.getMinFlow());
|
entity.setMinFlow(dataObject.getMinFlow());
|
||||||
entity.setMaxFlow(dataObject.getMaxFlow());
|
entity.setMaxFlow(dataObject.getMaxFlow());
|
||||||
|
|
|
||||||
|
|
@ -62,6 +62,10 @@ public class QualFilingEquipmentChangeDO extends BaseDO {
|
||||||
* 厂家
|
* 厂家
|
||||||
*/
|
*/
|
||||||
private String manufacturer;
|
private String manufacturer;
|
||||||
|
/**
|
||||||
|
* 设备价值
|
||||||
|
*/
|
||||||
|
private BigDecimal equipmentValue;
|
||||||
/**
|
/**
|
||||||
* 设备流量说明
|
* 设备流量说明
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue