src/main/java/com/ruoyi/stock/dto/StockInRecordDto.java
@@ -3,40 +3,39 @@
import com.ruoyi.stock.pojo.StockInRecord;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
@EqualsAndHashCode(callSuper = true)
@Data
public class StockInRecordDto extends StockInRecord {
    /**
     * 产品名称
     */
    @Schema(description = "产品名称")
    private String productName;
    /**
     * 产品规格
     */
    @Schema(description = "产品型号")
    private String model;
    /**
     * 产品料号
     */
    @Schema(description = "物料编码")
    private String materialCode;
    /**
     * 产品单位
     */
    @Schema(description = "单位")
    private String unit;
    @Schema(description = "时间字符串")
    private String timeStr;
    @Schema(description = "创建人")
    private String createBy;
    //现存量
    @Schema(description = "当前库存")
    private String currentStock;
    //订单
    @Schema(description = "订单编号")
    private String npsNo;
    //工单
    @Schema(description = "工单编号")
    private String workOrderNo;
    // 顶部父产品id
    @Schema(description = "顶级父级产品ID")
    private Long topParentProductId;
}