bug
jiangqs
2023-07-17 45d37a6febb87837a6daa65429703a37e437d257
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.ruoyi.system.api.domain.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @ClassName StaffTotalDto
 * @Description TODO
 * @Author jqs
 * @Date 2023/7/17 14:28
 * @Version 1.0
 */
@Data
public class StaffTotalDto extends StaffBaseDto{
 
 
    @ApiModelProperty(value = "商户id")
    private Long shopId;
 
    @ApiModelProperty(value = "活动id")
    private String activityId;
 
    @ApiModelProperty(value = "开始日期")
    private String startDate;
 
    @ApiModelProperty(value = "结束日期")
    private String endDate;
 
    @ApiModelProperty(value = "商品类型1周期2服务3体验4单品")
    private Integer goodsType;
 
    @ApiModelProperty(value = "年龄层",hidden = true)
    private Integer ageType;
}