package com.ruoyi.production.pojo;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* 生产订单BOM
|
* </p>
|
*
|
* @author 芯导软件(江苏)有限公司
|
* @since 2026-04-21 03:55:52
|
*/
|
@Data
|
@TableName("production_order_bom")
|
@Schema(name = "ProductionOrderBom对象", description = "生产订单BOM")
|
public class ProductionOrderBom implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Schema(description = "主键ID")
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
@Schema(description = "生产订单id")
|
private Long productionOrderId;
|
|
@Schema(description = "产品规格id")
|
private Long productModelId;
|
|
@Schema(description = "BOM编号")
|
private String bomNo;
|
|
@Schema(description = "备注")
|
private String remark;
|
|
@Schema(description = "版本号")
|
private String version;
|
|
@Schema(description = "bom的id")
|
private Long bomId;
|
|
@Schema(description = "创建人ID")
|
@TableField(fill = FieldFill.INSERT)
|
private Long createUser;
|
|
@Schema(description = "部门ID")
|
@TableField(fill = FieldFill.INSERT)
|
private Long deptId;
|
}
|