|
@@ -10,71 +10,43 @@ import java.math.BigDecimal;
|
|
|
@ApiModel("分摊后查询对象")
|
|
|
public class AfterAllocationVO {
|
|
|
|
|
|
- @ApiModelProperty(name = "",value = "")
|
|
|
- private Long id;
|
|
|
+ @ApiModelProperty(name = "", value = "")
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ @ApiModelProperty(name = "dateYear", value = "年")
|
|
|
+ private Integer dateYear;
|
|
|
+ /**
|
|
|
+ * 月
|
|
|
+ */
|
|
|
+ @ApiModelProperty(name = "dateMonth", value = "月")
|
|
|
+ private Integer dateMonth;
|
|
|
+
|
|
|
+ @ApiModelProperty(name = "levelSort", value = "分摊层级序号")
|
|
|
+ private Integer levelSort;
|
|
|
+
|
|
|
+ @ApiModelProperty(name = "levelName", value = "分摊层级数名称")
|
|
|
+ private String levelName;
|
|
|
+ /**
|
|
|
+ * 责任中心代码
|
|
|
+ */
|
|
|
+ @ApiModelProperty(name = "responsibilityCode", value = "责任中心代码")
|
|
|
+ private String responsibilityCode;
|
|
|
+ /**
|
|
|
+ * 责任中心名称
|
|
|
+ */
|
|
|
+ @ApiModelProperty(name = "responsibilityName", value = "责任中心名称")
|
|
|
+ private String responsibilityName;
|
|
|
+
|
|
|
+ private String accountCode;
|
|
|
+
|
|
|
+ private String accountName;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分摊得到的钱
|
|
|
+ */
|
|
|
+ @ApiModelProperty(name = "amount", value = "分摊得到的钱")
|
|
|
+ private BigDecimal amount;
|
|
|
|
|
|
- @ApiModelProperty(name = "dateYear",value = "年")
|
|
|
- private Integer dateYear;
|
|
|
- /**
|
|
|
- * 月
|
|
|
- */
|
|
|
- @ApiModelProperty(name = "dateMonth",value = "月")
|
|
|
- private Integer dateMonth;
|
|
|
-
|
|
|
- @ApiModelProperty(name = "levelSort",value = "分摊层级序号")
|
|
|
- private Integer levelSort;
|
|
|
-
|
|
|
- @ApiModelProperty(name = "levelName",value = "分摊层级数名称")
|
|
|
- private String levelName;
|
|
|
- /**
|
|
|
- * 责任中心代码
|
|
|
- */
|
|
|
- @ApiModelProperty(name = "responsibilityCode",value = "责任中心代码")
|
|
|
- private String responsibilityCode;
|
|
|
- /**
|
|
|
- * 责任中心名称
|
|
|
- */
|
|
|
- @ApiModelProperty(name = "responsibilityName",value = "责任中心名称")
|
|
|
- private String responsibilityName;
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 分摊得到的钱
|
|
|
- */
|
|
|
- @ApiModelProperty(name = "amount",value = "分摊得到的钱")
|
|
|
- private BigDecimal amount;
|
|
|
-
|
|
|
- /**
|
|
|
- * 目标责任中心
|
|
|
- */
|
|
|
- @ApiModelProperty(name = "targetResponsibilityCode",value = "目标责任中心")
|
|
|
- private String targetResponsibilityCode;
|
|
|
-
|
|
|
- /**
|
|
|
- * 目标责任中心名称
|
|
|
- */
|
|
|
- @ApiModelProperty(name = "targetResponsibilityName",value = "目标责任中心名称")
|
|
|
- private String targetResponsibilityName;
|
|
|
-
|
|
|
- /**
|
|
|
- * 分摊参数代码
|
|
|
- */
|
|
|
- @ApiModelProperty(name = "shareParamCode",value = "分摊参数代码")
|
|
|
- private String shareParamCode;
|
|
|
- /**
|
|
|
- * 分摊参数名称
|
|
|
- */
|
|
|
- @ApiModelProperty(name = "shareParamName",value = "分摊参数名称")
|
|
|
- private String shareParamName;
|
|
|
- /**
|
|
|
- * 分摊参数数值
|
|
|
- */
|
|
|
- @ApiModelProperty(name = "shareParamValueNum",value = "分摊参数数值")
|
|
|
- private BigDecimal shareParamValueNum;
|
|
|
- /**
|
|
|
- * 分摊参数比例
|
|
|
- */
|
|
|
- @ApiModelProperty(name = "分摊参数比例",value = "shareParamRate")
|
|
|
- private BigDecimal shareParamRate;
|
|
|
|
|
|
}
|