zss
10 天以前 03df670a1dfbcae8031e84e15dff0b77365f0af6
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
package com.ruoyi.lavorissue.dto;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * @author :yys
 * @date : 2025/8/14 11:53
 */
@Data
@ApiModel
public class StatisticsLaborIssue {
 
    private Integer season;
 
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date issueDate;
 
    private Long ylqNum = 0L;
 
    private Long wlqNum = 0L;
 
    private Long csylqNum = 0L;
 
    private Long cswlqNum = 0L;
 
}