liyong
2026-05-09 67fda7b2dfbfc9e6a8d8b9472499a67906d2bad1
1
2
3
4
5
6
7
8
9
10
11
12
package com.ruoyi.production.bean.dto;
 
import com.ruoyi.production.pojo.ProductionOrderPickRecord;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
@Data
@EqualsAndHashCode(callSuper = true)
@Schema(name = "ProductionOrderPickRecordDto", description = "领料记录查询参数")
public class ProductionOrderPickRecordDto extends ProductionOrderPickRecord {
}