935090232@qq.com
2022-04-05 d64e64319ef913bed67b13c87cb062c26769ed00
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;
    
}