Pu Zhibing
4 天以前 f8695411d66a17c99661cf68a88e3f0e78295ff8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.shop.domain.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @Date 2023/10/16 16:26
 */
@Data
public class MgtShopShareRatioSetDto {
    @ApiModelProperty(value = "商户id")
    private Long shopId;
    @ApiModelProperty(value = "分账比例")
    private Double shareRatio;
}