食材添加信息

This commit is contained in:
huangdeliang
2021-03-16 17:53:17 +08:00
parent 7a3ab6bfef
commit 03eb2508b6
11 changed files with 761 additions and 518 deletions

View File

@ -0,0 +1,27 @@
package com.stdiet.custom.domain;
import lombok.Data;
import java.util.Date;
@Data
public class SysIngredentFile {
Long id;
Long igdId;
String fileUrl;
String fileName;
Integer delFlag;
Long createBy;
Date createTime;
Long updateBy;
Date updateTime;
}

View File

@ -15,8 +15,6 @@ import java.util.Date;
*/
@Data
public class SysIngredient {
private static final long serialVersionUID = 1L;
/**
* id
*/
@ -107,4 +105,9 @@ public class SysIngredient {
private Long[] notRecIds;
/**
* 食材信息
*/
private String info;
}