| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.doumee.core.annotation.excel.ExcelColumn; |
| | | import com.doumee.core.utils.Constants; |
| | | import com.doumee.dao.business.vo.TaxesInvoicingVO; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | |
| | | private Date endTime; |
| | | |
| | | |
| | | |
| | | public TaxesInvoicingVO getTaxesInvoicingVO(){ |
| | | TaxesInvoicingVO taxesInvoicingVO = new TaxesInvoicingVO(); |
| | | taxesInvoicingVO.setId(this.getId()); |
| | | taxesInvoicingVO.setSolutionsName(this.getSolutionsName()); |
| | | taxesInvoicingVO.setValidCode(this.getValidCode()); |
| | | taxesInvoicingVO.setAddNum(this.getAddNum()); |
| | | taxesInvoicingVO.setDelNum(this.getDelNum()); |
| | | taxesInvoicingVO.setAmount(this.getFee()); |
| | | taxesInvoicingVO.setType(Constants.ONE); |
| | | return taxesInvoicingVO; |
| | | } |
| | | |
| | | } |