| | |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | import org.apache.poi.ss.usermodel.IndexedColors; |
| | | |
| | | import java.util.Date; |
| | | |
| | |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @Excel(name = "项目名称") |
| | | @Excel(name = "项目名称", headerColor = IndexedColors.BLACK) |
| | | private String name; |
| | | private Date createTime; |
| | | |
| | | @Excel(name = "公司名称") |
| | | @Excel(name = "公司名称", headerColor = IndexedColors.BLACK) |
| | | |
| | | private String companyName; |
| | | @Excel(name = "项目负责人") |
| | | @Excel(name = "项目负责人", headerColor = IndexedColors.BLACK) |
| | | |
| | | private String createPerson; |
| | | |