jyy
2021-05-17 acefb56fe018deadb46d9bcb34a8efcab8051916
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.matrix.system.activity.dto;
 
import com.matrix.core.pojo.BasePageQueryDto;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "SignWriteoffListDto", description = "查询参数")
public class SignWriteoffListDto extends BasePageQueryDto {
    
    @ApiModelProperty(value ="中奖者姓名")
    private String zjzxm;
 
    @ApiModelProperty(value ="活动名称/编码")
    private String hdmcbm;
    
    @ApiModelProperty(hidden = true)
    private Long companyId;
    
}