| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | |
| | | /** |
| | | * @ClassName MgtOtherConfigEditDto |
| | | * @Description TODO |
| | |
| | | public class MgtOtherConfigEditDto extends MgtBaseDto { |
| | | |
| | | @ApiModelProperty(value = "分享小程序可获得积分") |
| | | @NotNull(message = "分享小程序可获得积分不能为空") |
| | | private Integer shareIntegral; |
| | | |
| | | @ApiModelProperty(value = "平台建议可获得积分") |
| | | @NotNull(message = "平台建议可获得积分不能为空") |
| | | private Integer suggestPlatformIntegral; |
| | | |
| | | @ApiModelProperty(value = "每日签到可获得积分") |
| | | @NotNull(message = "每日签到可获得积分不能为空") |
| | | private Integer signInIntegral; |
| | | |
| | | @ApiModelProperty(value = "门店建议可获得积分") |
| | | @NotNull(message = "门店建议可获得积分不能为空") |
| | | private Integer suggestShopIntegral; |
| | | |
| | | @ApiModelProperty(value = "购物满1元可获得积分") |
| | | @NotNull(message = "购物满1元可获得积分不能为空") |
| | | private Integer payMoneyIntegral; |
| | | |
| | | @ApiModelProperty(value = "C端订单自动取消时间") |
| | | @NotNull(message = "C端订单自动取消时间不能为空") |
| | | private Integer orderAutoCancelTime; |
| | | |
| | | @ApiModelProperty(value = "首页风格1.鸿瑞堂2.古引坊") |
| | | @NotNull(message = "首页风格不能为空") |
| | | private Integer homeStyle; |
| | | } |