package com.ruoyi.technology.pojo;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
/**
|
* <p>
|
* BOM表
|
* </p>
|
*
|
* @author 芯导软件(江苏)有限公司
|
* @since 2026-04-20 10:05:55
|
*/
|
@Data
|
@TableName("technology_bom")
|
@Schema(name = "TechnologyBom对象", description = "BOM表")
|
public class TechnologyBom implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Schema(description = "主键ID")
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
@Schema(description = "产品规格id")
|
private Long productModelId;
|
|
@Schema(description = "备注")
|
private String remark;
|
|
@Schema(description = "版本号")
|
private String version;
|
|
@Schema(description = "创建时间")
|
@TableField(fill = FieldFill.INSERT)
|
private LocalDateTime createTime;
|
|
@Schema(description = "更新时间")
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
private LocalDateTime updateTime;
|
|
@Schema(description = "创建者")
|
@TableField(fill = FieldFill.INSERT)
|
private Long createUser;
|
|
@Schema(description = "更新者")
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
private Long updateUser;
|
|
@Schema(description = "BOM编号")
|
private String bomNo;
|
|
@Schema(description = "部门ID")
|
@TableField(fill = FieldFill.INSERT)
|
private Long deptId;
|
}
|