tuqin
15 小时以前 55011a9cd84676913b62b3c130257939c1df2488
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
package com.ruoyi.production.bean.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 生产核算查询参数
 */
@Data
@Schema(name = "ProductionCostingQueryDto", description = "生产核算查询参数")
public class ProductionCostingQueryDto implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "部门类型:1成品部门,2白盒部门")
    private Integer deptType;
 
    @Schema(description = "月份 yyyy-MM")
    private String yearMonth;
 
    @Schema(description = "员工姓名(模糊)")
    private String staffName;
 
    @Schema(description = "工序ID")
    private Long processId;
}