Compare commits
No commits in common. "663cb7af7f19c9990d260a8dffa90a42398e31b9" and "1c6c34ea5f6876ec8c8a7f8e81baba8256012d5e" have entirely different histories.
663cb7af7f
...
1c6c34ea5f
|
|
@ -46,6 +46,9 @@ public class BasicsPlaintServiceImpl extends ServiceImpl<BasicsPlaintMapper, Bas
|
|||
@Lazy
|
||||
private CustCasualApi custCasualApi;
|
||||
|
||||
@Autowired
|
||||
private AesEncryptUtil aesEncryptUtil;
|
||||
// @ApiModelProperty
|
||||
@Autowired
|
||||
private AllocCanteenApi allocCanteenApi;
|
||||
|
||||
|
|
@ -56,7 +59,7 @@ public class BasicsPlaintServiceImpl extends ServiceImpl<BasicsPlaintMapper, Bas
|
|||
} else {
|
||||
BasicsComplaint basicsComplaint = new BasicsComplaint();
|
||||
basicsComplaint.setCustId(custId);
|
||||
complaint.setMobile(complaint.getMobile());
|
||||
complaint.setMobile(AesEncryptUtil.aesDecode(complaint.getMobile()));
|
||||
LeBeanUtil.copyProperties(complaint, basicsComplaint);
|
||||
basicsComplaint.setComplaintId(Id.next());
|
||||
if (CollectionUtil.isNotEmpty(complaint.getComplaintPictureList())) {
|
||||
|
|
@ -76,7 +79,7 @@ public class BasicsPlaintServiceImpl extends ServiceImpl<BasicsPlaintMapper, Bas
|
|||
List<AppletPlaintVO> appletPlaintVOList = new ArrayList();
|
||||
appletPlaintParams.forEach((appletPlaintParam) -> {
|
||||
AppletPlaintVO appletPlaint = new AppletPlaintVO();
|
||||
appletPlaintParam.setMobile(appletPlaintParam.getMobile());
|
||||
appletPlaintParam.setMobile(AesEncryptUtil.aesEncrypt(appletPlaintParam.getMobile()));
|
||||
LeBeanUtil.copyProperties(appletPlaintParam, appletPlaint);
|
||||
appletPlaint.setComplaintPictureList(new ArrayList());
|
||||
if (StrUtil.isNotBlank(appletPlaintParam.getComplaintPicture())) {
|
||||
|
|
@ -108,7 +111,7 @@ public class BasicsPlaintServiceImpl extends ServiceImpl<BasicsPlaintMapper, Bas
|
|||
plaintPage.getRecords().forEach((record) -> {
|
||||
String sourceName = SourceTypeEnum.getDesc(record.getSourceType());
|
||||
record.setSourceName(sourceName);
|
||||
record.setMobile(record.getMobile());
|
||||
record.setMobile(this.aesEncryptUtil.aesEncrypt(record.getMobile()));
|
||||
if (StrUtil.isNotBlank(record.getComplaintPicture())) {
|
||||
record.setComplaintPictureList(Arrays.asList(record.getComplaintPicture().split(",")));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -29,7 +29,6 @@ public class BasicsComplaintPageVO {
|
|||
@LeNiuDecryptField
|
||||
private String custName;
|
||||
@ApiModelProperty("联系方式")
|
||||
@LeNiuDecryptField
|
||||
private String mobile;
|
||||
@ApiModelProperty("人员编号")
|
||||
private String custNum;
|
||||
|
|
|
|||
Loading…
Reference in New Issue