liding
6 天以前 73e8632e1082843e1736d86d3e5fa6a4ee0b4e7d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}