RepalCustomerInfoBO.java 835 B

1234567891011121314151617181920212223242526272829303132333435
  1. package com.winhc.repal.model.bo;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. import java.math.BigDecimal;
  5. /**
  6. * @author Aaron
  7. * @date 2022/4/24 10:57
  8. * @description
  9. */
  10. @Data
  11. public class RepalCustomerInfoBO {
  12. @ApiModelProperty(value = "客户id")
  13. private Long custId;
  14. @ApiModelProperty(value = "客户名称")
  15. private String custName;
  16. @ApiModelProperty(value = "客户性质 1企业 2个人 3政府事业单位")
  17. private Integer custProperty;
  18. @ApiModelProperty(value = "1客户 2供应商")
  19. private Integer custType;
  20. @ApiModelProperty("关联账款数量")
  21. private Integer repalBillCount;
  22. @ApiModelProperty(value = "账款总金额")
  23. private BigDecimal totalMoney;
  24. @ApiModelProperty(value = "待收金额")
  25. private BigDecimal receivable;
  26. }