package com.ruoyi.business.entity;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import lombok.Data;
|
import com.ruoyi.common.core.domain.MyBaseEntity;
|
|
/**
|
* 生产主表 实体类
|
*
|
* @author ruoyi
|
* @date 2025-06-13
|
*/
|
@Data
|
@TableName("production_inventory")
|
public class ProductionInventory extends MyBaseEntity {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键ID
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
/**
|
* 生产主表ID
|
*/
|
@TableField(value = "production_master_id")
|
private Long productionMasterId;
|
/**
|
* 煤种ID
|
*/
|
@TableField(value = "coal_id")
|
private Long coalId;
|
/**
|
* 煤种
|
*/
|
@TableField(value = "coal")
|
private String coal;
|
/**
|
* 库存数量
|
*/
|
@TableField(value = "inventory_quantity")
|
private Integer inventoryQuantity;
|
/**
|
* 使用数量
|
*/
|
@TableField(value = "used_quantity")
|
private Integer usedQuantity;
|
}
|