!204 打卡优化

Merge pull request !204 from 德仔/xzj
This commit is contained in:
德仔
2021-04-15 12:01:47 +08:00
committed by Gitee
21 changed files with 1382 additions and 50 deletions

View File

@ -0,0 +1,43 @@
package com.stdiet.custom.domain;
import com.stdiet.common.annotation.Excel;
import com.stdiet.common.core.domain.BaseEntity;
import lombok.Data;
/**
* 营养知识小问答对象 sys_nutrition_question
*
* @author xzj
* @date 2021-04-13
*/
@Data
public class SysNutritionQuestion extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
private Long id;
/** 标题 */
@Excel(name = "标题")
private String title;
/** 内容 */
@Excel(name = "内容")
private String content;
/** 关键词,逗号隔开 */
@Excel(name = "关键词,逗号隔开")
private String key;
/** 标题内容索引分词之后的关键词 */
@Excel(name = "标题内容索引分词之后的关键词")
private String titleContentIndex;
/** 是否在小程序显示0 不显示 1显示默认0 */
@Excel(name = "是否在小程序显示0 不显示 1显示默认0")
private Integer showFlag;
/** 删除标识 0未删除 1已删除 */
private Integer delFlag;
}

View File

@ -76,6 +76,9 @@ public class SysWxUserLog extends BaseEntity
//客户ID
private Long customerId;
//建议
private String remark;
/**
* 非持久化字段,客户姓名
*/
@ -123,6 +126,25 @@ public class SysWxUserLog extends BaseEntity
@Excel(name = "体型对比照")
private String bodyImages;
/** 服务建议 */
@Excel(name = "服务建议")
private String suggest;
/** 目标体重 */
@Excel(name = "目标体重")
private BigDecimal targetWeight;
/** 执行评分,五分制 */
@Excel(name = "执行评分,五分制")
private BigDecimal executionScore;
/** 点评 */
@Excel(name = "点评")
private String comment;
/** 删除标识 0未删除 1已删除 */
private Long delFlag;
//售后营养师ID
private Long afterNutritionistId;