张晓波
2023-09-19 164694c47c35d6654df69b533e8dbf8b5423efc5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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;
}