| 1234567891011121314151617181920212223242526272829303132 |
- package com.goafanti.order.bo;
- import com.goafanti.common.utils.excel.Excel;
- import java.math.BigDecimal;
- import java.util.Date;
- public class OutOrderLegalAffairsBo extends OutOrderLegalAffairsListBo {
- @Excel(name = "法务时间")
- private String operationDate;
- @Excel(name = "法务类型",readConverterExp = "0=法务催收中,1=延期法务,2=已完成法务")
- private Integer type;
- public String getOperationDate() {
- return operationDate;
- }
- public void setOperationDate(String operationDate) {
- this.operationDate = operationDate;
- }
- public Integer getType() {
- return type;
- }
- public void setType(Integer type) {
- this.type = type;
- }
- }
|