xiaoyong931011
2021-04-01 1c13ae0c6d500cf5ec3c3a5f7d4b6e7a617e36ba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.matrix.system.activity.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "BeCloseDto", description = "参数")
public class BeCloseDto {
    
    @ApiModelProperty(value ="活动主表ID")
    private Long actId;
    
    @ApiModelProperty(hidden = true)
    private Long companyId;
 
}