添加是否允许会员自定义金额字段
This commit is contained in:
@@ -186,4 +186,6 @@ public class TbShopInfoDto implements Serializable {
|
||||
private String districts;
|
||||
|
||||
private String cities;
|
||||
|
||||
private String isCustom;
|
||||
}
|
||||
@@ -244,6 +244,10 @@ public class TbShopInfo implements Serializable {
|
||||
@ApiModelProperty(value = "区")
|
||||
private String districts;
|
||||
|
||||
@Column(name = "is_custom")
|
||||
@ApiModelProperty(value = "是否允许用户自定义金额")
|
||||
private String isCustom;
|
||||
|
||||
public void copy(TbShopInfo source){
|
||||
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(false));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user