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