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;
|
|
}
|