zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package com.changhong.epc.bean.tenant.norm;
 
import com.changhong.epc.constter.base.BaseBean;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import javax.persistence.Column;
import javax.persistence.Table;
import java.io.Serializable;
 
/**
 * 
 * @ClassName: SuppStander
 * @author [九鼎联合科技]
 * @date 2017年08月28日 上午10:27:11
 */
@Table(name="epc_supp_stander_{rule}")
@Data
@EqualsAndHashCode(callSuper=true)
public class SuppStander extends BaseBean implements Serializable {
 
    private static final long serialVersionUID = 1L;
    
    /**
     * 报销方式
     * 表字段:name
     */
    @Column(name="name")
    private String name;
    
    /**
     * 费用类型mdCode
     * 表字段:type
     */
    @Column(name="type")
    private String type;
 
    /**
     * 费用类型名称
     */
    @Column(name = "type_name")
    private String typeName;
    
    /**
     * 
     * 表字段:sub_type
     */
    @Column(name="sub_type")
    private Integer subType;
    
    /**
     * 
     * 表字段:rule
     */
    @Column(name="rule")
    private String rule;
    
    /**
     * 
     * 表字段:ct_id
     */
    @Column(name="ct_id")
    private Integer ctId;
 
    public static SuppStander of(Integer ctId){
        SuppStander suppStander = new SuppStander();
        suppStander.setCtId(ctId);
        return suppStander;
    }
}