2026-09-03 3c89b91df438a2364ee30f6231a76daaecf978ff
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 {
}