打卡优化

This commit is contained in:
xiezhijun 2021-04-15 09:32:36 +08:00
parent 5c048db222
commit 3b644ee3c1
3 changed files with 14 additions and 0 deletions
stdiet-custom/src/main
java/com/stdiet/custom
resources/mapper/custom

@ -76,6 +76,9 @@ public class SysWxUserLog extends BaseEntity
//客户ID
private Long customerId;
//建议
private String remark;
/**
* 非持久化字段客户姓名
*/

@ -29,6 +29,8 @@ public class WxLogInfo implements Serializable {
private String defecation;
private String remark;
/** 情绪 */
private String emotion;
@ -283,6 +285,14 @@ public class WxLogInfo implements Serializable {
this.bodyImagesUrl = bodyImagesUrl;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
@Override
public String toString() {
return "WxLogInfo{" +

@ -58,6 +58,7 @@
<result property="emotion" column="emotion" />
<result property="slyEatFood" column="sly_eat_food" />
<result property="constipation" column="constipation" />
<result property="remark" column="remark"></result>
<result property="breakfastImages" column="breakfast_images" />
<result property="lunchImages" column="lunch_images" />
<result property="dinnerImages" column="dinner_images" />