package com.ruoyi.production.bean.dto;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
@Data
|
public class ProductionProductOutputDto {
|
@Schema(description = "主键ID")
|
private Long id;
|
@Schema(description = "产品主表ID")
|
private Long productMainId;
|
@Schema(description = "生产产品主表ID")
|
private Long productionProductMainId;
|
@Schema(description = "产品型号ID")
|
private Long productModelId;
|
@Schema(description = "数量")
|
private BigDecimal quantity;
|
@Schema(description = "报废数量")
|
private BigDecimal scrapQty;
|
@Schema(description = "创建时间")
|
private LocalDateTime createTime;
|
@Schema(description = "更新时间")
|
private LocalDateTime updateTime;
|
@Schema(description = "租户ID")
|
private Long tenantId;
|
@Schema(description = "创建人")
|
private Integer createUser;
|
@Schema(description = "更新人")
|
private Integer updateUser;
|
@Schema(description = "部门ID")
|
private Long deptId;
|
|
@Schema(description = "产品编号")
|
private String productNo;
|
@Schema(description = "规格型号")
|
private String model;
|
}
|