package cn.iocoder.yudao.module.mes.controller.admin.pd.techconfirm.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; @Schema(description = "管理后台 - 产品技术确认函分页 Request VO") @Data @EqualsAndHashCode(callSuper = true) @ToString(callSuper = true) public class ProductTechConfirmPageReqVO extends PageParam { @Schema(description = "确认函编号", example = "TC20260801001") private String confirmNo; @Schema(description = "客户ID", example = "2048") private Long customerId; @Schema(description = "产品名称", example = "漆包扁铜线") private String productName; @Schema(description = "模板类型", example = "general") private String templateType; @Schema(description = "状态", example = "0") private Integer status; }