Commit b15c01d1 authored by dmy's avatar dmy

中医药小程序代码提交

parent 0540420d
......@@ -52,6 +52,12 @@ public class ProductExtendVo {
@TableAnnotation("language_type")
@ApiModelProperty(notes = "语言类型0中文1英文2韩文3日文")
private Integer languageType;
/**
* 产品功效
*/
@TableAnnotation("product_efficacy")
@ApiModelProperty(notes = "产品功效")
private String productEfficacy;
/**
* 服务类型
*/
......@@ -167,4 +173,12 @@ public class ProductExtendVo {
public void setLanguageType(Integer languageType) {
this.languageType = languageType;
}
public String getProductEfficacy() {
return productEfficacy;
}
public void setProductEfficacy(String productEfficacy) {
this.productEfficacy = productEfficacy;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment