rk
6 小时以前 c74a6f59490cfb9a0ee37f70427739b74e7fbd58
server/services/src/main/java/com/doumee/dao/dto/ShopUpdateDTO.java
@@ -118,4 +118,20 @@
    @NotBlank(message = "支付宝实名姓名不能为空")
    private String aliName;
    @ApiModelProperty(value = "就地寄存分成占比(%)", required = true, example = "5.5")
    @NotNull(message = "就地寄存分成占比不能为空")
    private Double localDeposit;
    @ApiModelProperty(value = "异地存件分成占比(%)", required = true, example = "5.5")
    @NotNull(message = "异地存件分成占比不能为空")
    private Double remoteDeposit;
    @ApiModelProperty(value = "异地取件分成占比(%)", required = true, example = "5.5")
    @NotNull(message = "异地取件分成占比不能为空")
    private Double remoteTake;
    @ApiModelProperty(value = "位置标签主键(关联category type=5,多个以逗号分割)", required = true)
    @NotBlank(message = "位置标签不能为空")
    private String locationTagIds;
}