| | |
| | | <groupId>org.freemarker</groupId> |
| | | <artifactId>freemarker</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>com.baomidou</groupId> |
| | | <artifactId>mybatis-plus-boot-starter</artifactId> |
| | |
| | | @TableField("user_id") |
| | | private String userId; |
| | | |
| | | @TableField("link_id") |
| | | private String linkId; |
| | | |
| | | private String attachment; |
| | | |
| | | @TableField("create_time") |
| | | private Date createTime; |
| | | |
| | | public String getLinkId() { |
| | | return linkId; |
| | | } |
| | | |
| | | public Topic setLinkId(String linkId) { |
| | | this.linkId = linkId; |
| | | return this; |
| | | } |
| | | |
| | | public Date getCreateTime() { |
| | | return createTime; |
| | | } |
| | |
| | | ISchemeDetailService iSchemeDetailService; |
| | | @Autowired |
| | | IProjectDealService projectDealService; |
| | | |
| | | @Value("${base.file.path}") |
| | | String basePath; |
| | | |
| | |
| | | #url: jdbc:mysql://180.169.94.250:8306/data_admin?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC&nullCatalogMeansCurrent=true |
| | | base: |
| | | file: |
| | | path: d:/srs |
| | | |
| | | path: d:/srs/scheme |
| | | topic: |
| | | path: d:/srs/topic |
| | | |
| | | multipart: |
| | | maxFileSize: 50Mb |
| | |
| | | spring: |
| | | profiles: |
| | | active: |
| | | prod |
| | | dev |
| | | |
| | | |