luodangjia
2024-12-10 ee7ce5d1cbf80bee0a15c1e5bc5eaa30858d812b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.hollywood.applet.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class PerformanceJoinDto {
    @ApiModelProperty(value = "活动id")
    Long acId;
    String name;
    String introduce;
    String indexPic;
    @ApiModelProperty(value = ",分隔")
    String infoPic;
    @ApiModelProperty("1:wx2:ali")
    Integer payType;
 
}