1
xiaoyong931011
2023-01-17 f7c7a1d550444e88c8f7033a8a586211ab8c3ce7
1
2
3
4
5
6
7
8
9
10
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
@Data
@ApiModel(value = "PayMethodDto", description = "接收参数类")
public class PayMethodDto {
    private String type;
}