buhuazhen
2026-05-09 7496e718f10286651b9e2d08a8b8548cd3b242b6
src/main/java/com/ruoyi/production/bean/dto/ProductionOrderDto.java
@@ -1,8 +1,17 @@
package com.ruoyi.production.bean.dto;
import com.ruoyi.production.pojo.ProductionOrder;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
@EqualsAndHashCode(callSuper = true)
@Data
@Schema(name = "ProductionOrderDto", description = "生产订单查询对象")
public class ProductionOrderDto extends ProductionOrder {
    @Schema(description = "产品名称")
    private String productName;
    @Schema(description = "规格型号")
    private String model;
}