package cn.iocoder.yudao.module.mes.controller.admin.qc.ncr.vo;
|
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.ToString;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDateTime;
|
|
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
|
@Schema(description = "管理后台 - MES 不合格品处理单分页 Request VO")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
public class MesQcNcrPageReqVO extends PageParam {
|
|
@Schema(description = "NCR单号", example = "NCR2025")
|
private String code;
|
|
@Schema(description = "检验类型", example = "1")
|
private Integer qcType;
|
|
@Schema(description = "不合格物料ID", example = "20")
|
private Long itemId;
|
|
@Schema(description = "缺陷等级", example = "1")
|
private Integer defectLevel;
|
|
@Schema(description = "处置方式", example = "1")
|
private Integer disposition;
|
|
@Schema(description = "状态", example = "0")
|
private Integer status;
|
|
@Schema(description = "责任部门ID", example = "10")
|
private Long responsibleDeptId;
|
|
@Schema(description = "评审日期")
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
private LocalDateTime[] reviewDate;
|
|
@Schema(description = "创建时间")
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
private LocalDateTime[] createTime;
|
|
}
|