添加退款、会员退款、会员充值控制
This commit is contained in:
parent
48aab9eeac
commit
f0476f05e0
|
|
@ -188,4 +188,8 @@ public class TbShopInfoDto implements Serializable {
|
||||||
private String cities;
|
private String cities;
|
||||||
|
|
||||||
private String isCustom;
|
private String isCustom;
|
||||||
|
|
||||||
|
private String isReturn;
|
||||||
|
private String isMemberIn;
|
||||||
|
private String isMemberReturn;
|
||||||
}
|
}
|
||||||
|
|
@ -248,6 +248,24 @@ public class TbShopInfo implements Serializable {
|
||||||
@ApiModelProperty(value = "是否允许用户自定义金额")
|
@ApiModelProperty(value = "是否允许用户自定义金额")
|
||||||
private String isCustom;
|
private String isCustom;
|
||||||
|
|
||||||
|
|
||||||
|
@Column(name = "is_return")
|
||||||
|
@ApiModelProperty(value = "是否允许用户自定义金额")
|
||||||
|
private String isReturn;
|
||||||
|
|
||||||
|
|
||||||
|
@Column(name = "is_member_in")
|
||||||
|
@ApiModelProperty(value = "是否允许用户自定义金额")
|
||||||
|
private String isMemberIn;
|
||||||
|
|
||||||
|
|
||||||
|
@Column(name = "is_member_return")
|
||||||
|
@ApiModelProperty(value = "是否允许用户自定义金额")
|
||||||
|
private String isMemberReturn;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public void copy(TbShopInfo source){
|
public void copy(TbShopInfo source){
|
||||||
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(false));
|
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(false));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue