zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
42
43
44
45
package com.shlanbao.tzsc.base.mapping;
/**
 * @ClassName: CosIncompleteCoefficient 
 * @Description: 残烟丝考核系数 
 * @author luo
 * @date 2015年1月22日 下午1:26:19 
 */
public class CosIncompleteCoefficient {
    private String id;
    private String name;
    private String code;
    private double modulus;
    private String remark;
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getCode() {
        return code;
    }
    public void setCode(String code) {
        this.code = code;
    }
    public double getModulus() {
        return modulus;
    }
    public void setModulus(double modulus) {
        this.modulus = modulus;
    }
    public String getRemark() {
        return remark;
    }
    public void setRemark(String remark) {
        this.remark = remark;
    }
    
}