| | |
| | | package org.jeecg.modules.demo.contract.vo; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import org.jeecg.modules.demo.contract.entity.Contract; |
| | | import org.jeecg.modules.demo.contract.entity.ContractFile; |
| | | import org.jeecg.modules.demo.contract.entity.SemanticWord; |
| | | import lombok.Data; |
| | | import org.jeecg.modules.demo.customer.entity.Customer; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | import org.jeecgframework.poi.excel.annotation.ExcelEntity; |
| | | import org.jeecgframework.poi.excel.annotation.ExcelCollection; |
| | |
| | | @Schema(description = "语义词") |
| | | private List<SemanticWord> semanticWordList; |
| | | |
| | | |
| | | @TableField(exist = false) |
| | | private Customer customer; |
| | | } |