|
@@ -4,6 +4,7 @@ import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
+import org.jeecg.common.aspect.annotation.Dict;
|
|
|
import org.jeecg.modules.oa.entity.BudgetCostDetail;
|
|
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
import org.jeecgframework.poi.excel.annotation.ExcelCollection;
|
|
@@ -75,6 +76,7 @@ public class BudgetCostPages {
|
|
|
private String remark;
|
|
|
/**部门*/
|
|
|
@Excel(name = "部门", width = 15)
|
|
|
+ @Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "id")
|
|
|
@ApiModelProperty(value = "部门")
|
|
|
private String department;
|
|
|
/**费用资金类别*/
|
|
@@ -109,5 +111,9 @@ public class BudgetCostPages {
|
|
|
@Excel(name = "待支付金额", width = 15)
|
|
|
@ApiModelProperty(value = "待支付金额")
|
|
|
private java.math.BigDecimal toBePaidMoney;
|
|
|
+ /**备注*/
|
|
|
+ @Excel(name = "明细备注", width = 15)
|
|
|
+ @ApiModelProperty(value = "明细备注")
|
|
|
+ private String detailRemark;
|
|
|
|
|
|
}
|