添加供应商类型字段
This commit is contained in:
parent
79dc372bfe
commit
90c84e4c27
|
|
@ -73,4 +73,6 @@ public class SuppliersInfoMQDto implements Serializable {
|
|||
private java.lang.String sourceType;
|
||||
/**变更审核结果*/
|
||||
private java.lang.String status;
|
||||
/**操作类型 (入驻/变更)*/
|
||||
private java.lang.String optType;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -107,6 +107,8 @@ public class NuConfigSuppliersApply implements Serializable {
|
|||
@Excel(name = "审核机构", width = 15)
|
||||
@ApiModelProperty(value = "审核机构")
|
||||
private String applyOrg;
|
||||
// 操作类型 (入驻/变更)
|
||||
private String optType;
|
||||
|
||||
|
||||
/**变更审核结果*/
|
||||
|
|
|
|||
|
|
@ -101,6 +101,7 @@ public class SuppliersMQListener {
|
|||
applyData.setSourceType(suppliersInfoMQDto.getSourceType());
|
||||
applyData.setIzHistory("N");
|
||||
applyData.setApplyOrg(suppliersInfoMQDto.getApplyOrg());
|
||||
applyData.setOptType(suppliersInfoMQDto.getOptType());
|
||||
nuConfigSuppliersApplyService.save(applyData);
|
||||
|
||||
// ConfigSuppliersInfo param = configSuppliersInfoService.getById(suppliersInfoMQDto.getSuppliersId());
|
||||
|
|
|
|||
Loading…
Reference in New Issue