OutOrderLegalAffairsBo.java 730 B

1234567891011121314151617181920212223242526272829303132
  1. package com.goafanti.order.bo;
  2. import com.goafanti.common.utils.excel.Excel;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. public class OutOrderLegalAffairsBo extends OutOrderLegalAffairsListBo {
  6. @Excel(name = "法务时间")
  7. private String operationDate;
  8. @Excel(name = "法务类型",readConverterExp = "0=法务催收中,1=延期法务,2=已完成法务")
  9. private Integer type;
  10. public String getOperationDate() {
  11. return operationDate;
  12. }
  13. public void setOperationDate(String operationDate) {
  14. this.operationDate = operationDate;
  15. }
  16. public Integer getType() {
  17. return type;
  18. }
  19. public void setType(Integer type) {
  20. this.type = type;
  21. }
  22. }