添加长者监护人头像功能
This commit is contained in:
parent
169ee686ee
commit
0e8a35ddf1
|
|
@ -128,5 +128,9 @@ public class AdvisoryInfo implements Serializable {
|
|||
private String statusName;
|
||||
@TableField(exist = false)
|
||||
private String token;
|
||||
@TableField(exist = false)
|
||||
private String headPath;//长者头像
|
||||
@TableField(exist = false)
|
||||
private String guardianHeadPath;//监护人头像
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -301,4 +301,6 @@ public class ElderInfoMQDto implements Serializable {
|
|||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date checkinTime;
|
||||
|
||||
private String headPath;//长者头像
|
||||
private String guardianHeadPath;//监护人头像
|
||||
}
|
||||
|
|
|
|||
|
|
@ -309,5 +309,7 @@ public class ElderInfoEntity implements Serializable {
|
|||
private String jfztName;
|
||||
private String modifyStatus;
|
||||
private String auditContent;
|
||||
private String headPath;//长者头像
|
||||
private String guardianHeadPath;//监护人头像
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
package com.nu.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
|
@ -69,6 +70,8 @@ public class NuBizAdvisoryInfoEntity implements Serializable {
|
|||
private String izJg;
|
||||
//是否是机构 0否 1是
|
||||
private String izGys;
|
||||
private String headPath;//长者头像
|
||||
private String guardianHeadPath;//监护人头像
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -385,5 +385,7 @@ public class ElderInfo implements Serializable {
|
|||
*/
|
||||
@TableField(exist = false)
|
||||
private String jfztName;
|
||||
private String headPath;//长者头像
|
||||
private String guardianHeadPath;//监护人头像
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -101,7 +101,8 @@ public class ElderInfoServiceImpl extends ServiceImpl<ElderInfoMapper, ElderInfo
|
|||
Objects.equals(dbRecord.getStartTime(), inputRecord.getStartTime()) &&
|
||||
Objects.equals(dbRecord.getEndTime(), inputRecord.getEndTime()) &&
|
||||
Objects.equals(dbRecord.getDisabilityReimbursementType(), inputRecord.getDisabilityReimbursementType()) &&
|
||||
Objects.equals(dbRecord.getMedicalType(), inputRecord.getMedicalType())
|
||||
Objects.equals(dbRecord.getMedicalType(), inputRecord.getMedicalType())&&
|
||||
Objects.equals(dbRecord.getHeadPath(), inputRecord.getHeadPath())
|
||||
);
|
||||
} else {
|
||||
return !(
|
||||
|
|
@ -110,7 +111,8 @@ public class ElderInfoServiceImpl extends ServiceImpl<ElderInfoMapper, ElderInfo
|
|||
Objects.equals(dbRecord.getGuardianPhone(), inputRecord.getGuardianPhone()) &&
|
||||
Objects.equals(dbRecord.getGuardianHomeAddress(), inputRecord.getGuardianHomeAddress()) &&
|
||||
Objects.equals(dbRecord.getGuardianWorkUnit(), inputRecord.getGuardianWorkUnit()) &&
|
||||
Objects.equals(dbRecord.getGuardianIdCardPositive(), inputRecord.getGuardianIdCardPositive())
|
||||
Objects.equals(dbRecord.getGuardianIdCardPositive(), inputRecord.getGuardianIdCardPositive())&&
|
||||
Objects.equals(dbRecord.getGuardianHeadPath(), inputRecord.getGuardianHeadPath())
|
||||
);
|
||||
}
|
||||
// if("jhr".equals(elderInfoEntity.getModifyType())){
|
||||
|
|
|
|||
Loading…
Reference in New Issue