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
package com.changhong.epc.bean.form;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonProperty;
 
import lombok.Data;
 
@Data
public class BugetSubForm {
//    List<> subData;
    private String DATAROWNUM;
    
//    private String budget_itemCostType;
    
    //预算业务类型
    @JsonProperty("C_Type")
    private String C_Type;
    
    //预算部门
    private String budget_itemDepartment;
    
    //当前预算金额
    private String budget_itemMoney;
    
    //当前预算余额
    private String budget_itemBalance;
    
    //上级部门余额
    private String budget_superMoney;
    
    //上级预算部门
    private String budget_superDepartement;
    
    //预算项目
    private String budget_project;
 
    @JSONField(name = "C_Type")
    public String getC_Type() {
        return C_Type;
    }
 
    public void setC_Type(String c_Type) {
        C_Type = c_Type;
    }
    
    
    
    
}