소스 검색

食物热量查询修改!

8 년 전
부모
커밋
7111d96201
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      patient-co-wlyy/src/main/java/com/yihu/wlyy/entity/education/FoodComp.java

+ 3 - 3
patient-co-wlyy/src/main/java/com/yihu/wlyy/entity/education/FoodComp.java

@ -30,7 +30,7 @@ public class FoodComp extends IdEntity {
	// 成分
	private String component;
	//重量
	private int weight;
	private String weight;
	private String photo;
@ -74,11 +74,11 @@ public class FoodComp extends IdEntity {
		this.component = component;
	}
	public int getWeight() {
	public String getWeight() {
		return weight;
	}
	public void setWeight(int weight) {
	public void setWeight(String weight) {
		this.weight = weight;
	}
}