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;
|
| }
|
|