69 lines
1.3 KiB
Java
69 lines
1.3 KiB
Java
package com.ruoyi.system.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
/**
|
|
* 项目产品对象 figure_save
|
|
*
|
|
* @author tzy
|
|
* @date 2024-05-28
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
@TableName("figure_save")
|
|
public class FigureSave extends BaseEntity {
|
|
|
|
private static final long serialVersionUID=1L;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Long id;
|
|
/**
|
|
* 产品名称
|
|
*/
|
|
private String figureName;
|
|
/**
|
|
* 生产令号
|
|
*/
|
|
private String productionCode;
|
|
/**
|
|
* 产品型号
|
|
*/
|
|
private String figureNumber;
|
|
/**
|
|
* 数量
|
|
*/
|
|
private Long figureNum;
|
|
/**
|
|
* 图纸路径
|
|
*/
|
|
private String drawPath;
|
|
/**
|
|
* 行程
|
|
*/
|
|
private Long jdInventory;
|
|
/**
|
|
* 类型
|
|
*/
|
|
private String productType;
|
|
/**
|
|
* 关联项目表
|
|
*/
|
|
private Long pid;
|
|
/**
|
|
* 轴向
|
|
*/
|
|
private String axialType;
|
|
/**
|
|
* 箱体类型
|
|
*/
|
|
private String boxType;
|
|
}
|