package com.thhy.materials.modules.biz.concret.entity;
|
|
import lombok.Data;
|
import lombok.Getter;
|
import lombok.Setter;
|
import lombok.ToString;
|
|
import java.io.Serializable;
|
|
@Data
|
@Getter
|
@Setter
|
@ToString
|
public class TSteelNeed implements Serializable {
|
/**
|
* 钢筋理论耗量id
|
*/
|
private String consumptionId;
|
|
/**
|
* 钢筋类型id
|
*/
|
private String steelId;
|
|
/**
|
* 需求数量
|
*/
|
private String needNum;
|
//系数
|
private String coefficient;
|
//所需的总数 = 需求数量*系数
|
private String totals;
|
|
/**
|
* This field was generated by MyBatis Generator.
|
* This field corresponds to the database table t_steel_need
|
*
|
* @mbg.generated Tue Apr 18 09:42:24 CST 2023
|
*/
|
private static final long serialVersionUID = 1L;
|
}
|