package com.ruoyi.production.pojo;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
@Data
|
@TableName("production_product_output")
|
public class ProductionProductOutput {
|
|
@TableId(type = IdType.AUTO)
|
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 = "创建时间")
|
@TableField(fill = FieldFill.INSERT)
|
private LocalDateTime createTime;
|
|
@Schema(description = "更新时间")
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
private LocalDateTime updateTime;
|
|
@Schema(description = "报废数量")
|
private BigDecimal scrapQty;
|
@Schema(description = "创建用户")
|
@TableField(fill = FieldFill.INSERT)
|
private Integer createUser;
|
|
@Schema(description = "更新用户")
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
private Integer updateUser;
|
|
@TableField(fill = FieldFill.INSERT)
|
private Long deptId;
|
|
}
|