| 25 | import org.apache.fesod.sheet.annotation.ExcelProperty; |
| 26 | |
| 27 | @Getter |
| 28 | @Setter |
| 29 | @EqualsAndHashCode |
| 30 | public class BomData { |
| 31 | @ExcelProperty("姓名") |
| 32 | private String name; |
| 33 | |
| 34 | @ExcelProperty("年纪") |
| 35 | private Long age; |
| 36 | } |
nothing calls this directly
no outgoing calls
no test coverage detected