添加食谱模板

This commit is contained in:
huangdeliang
2021-02-27 20:15:40 +08:00
parent 1d7b7cd259
commit 77d5d346b1
13 changed files with 667 additions and 7 deletions

View File

@ -137,4 +137,7 @@ public class SysRecipesPlan {
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date updateTime;
// 0-普通 1-模板
private Integer type;
}

View File

@ -0,0 +1,28 @@
package com.stdiet.custom.domain;
import lombok.Data;
import java.util.Date;
@Data
public class SysRecipesPlanModel {
Long id;
Long nutritionistId;
Long nutriAssisId;
Long planId;
String remark;
Date updateTime;
Date createTime;
String updateBy;
String createBy;
Long recipesId;
}