CostingGroupStartVO.java 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package com.imed.costaccount.model.vo;
  2. import io.swagger.annotations.ApiModel;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. import java.io.Serializable;
  6. import java.math.BigDecimal;
  7. @Data
  8. @ApiModel("成本分摊前查询列表")
  9. public class CostingGroupStartVO implements Serializable {
  10. private static final long serialVersionUID = 1L;
  11. @ApiModelProperty(name = "id",value = "id")
  12. private Long id;
  13. @ApiModelProperty(name = "year",value = "年")
  14. private Integer year;
  15. @ApiModelProperty(name = "month",value = "月")
  16. private Integer month;
  17. @ApiModelProperty(name = "amount",value = "金额")
  18. private BigDecimal amount;
  19. @ApiModelProperty(name = "departCode",value = "部门code")
  20. private String departCode;
  21. @ApiModelProperty(name = "departName",value = "部门名称")
  22. private String departName;
  23. @ApiModelProperty(name = "responsibilityCode",value = "责任中心代码")
  24. private String responsibilityCode;
  25. @ApiModelProperty(name = "responsibilityName",value = "责任中心名称")
  26. private String responsibilityName;
  27. @ApiModelProperty(name = "accountCode",value = "会计中心code")
  28. private String accountCode;
  29. @ApiModelProperty(name = "accountName",value = "会计中心名称")
  30. private String accountName;
  31. @ApiModelProperty(name = "productCode",value = "成本项目code")
  32. private String productCode;
  33. @ApiModelProperty(name = "productName",value = "成本项目名称")
  34. private String productName;
  35. @ApiModelProperty(name = "fileId",value = "文件id")
  36. private Long fileId;
  37. }