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; } }