package com.iailab.module.ansteel.mpk.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @description: 工序
|
* @author: lirm
|
* @date: 2025/03/13
|
**/
|
@Data
|
@TableName("t_product_process")
|
public class ProductProcessEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId
|
private String id;
|
/**
|
* 工序名称
|
*/
|
private String name;
|
/**
|
* BFG单耗
|
*/
|
private String bfgCost;
|
/**
|
* BFG产率
|
*/
|
private String bfgProdRate;
|
/**
|
* COG单耗
|
*/
|
private String cogCost;
|
/**
|
* COG产率
|
*/
|
private String cogProdRate;
|
/**
|
* LDG单耗
|
*/
|
private String ldgCost;
|
/**
|
* LDG产率
|
*/
|
private String ldgProdRate;
|
/**
|
* 混合煤气单耗
|
*/
|
private String gasCost;
|
}
|