Merge remote-tracking branch 'origin/test' into zs
This commit is contained in:
commit
a90c441988
|
|
@ -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));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue