| | |
| | | public class shareExcel implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("统一社会信用代码") |
| | | private String creditcode; |
| | | @ColumnWidth(30) |
| | | @ExcelProperty("企业名称") |
| | | private String deptId; |
| | | |
| | | @ExcelProperty("股东") |
| | | private String shareholder; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("持股比例") |
| | | @ExcelProperty("持股比例(%)") |
| | | private String shareholdingratio; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("出资金额") |
| | | @ExcelProperty("出资金额(万元)") |
| | | private String capital; |
| | | |
| | | @ColumnWidth(10) |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("出资时间") |
| | | private String capitaltime; |
| | | |
| | | @ColumnWidth(10) |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("身份证") |
| | | private String cardid; |
| | | |