修改实体类--斯卡蒂
parent
d8be753654
commit
2b67e26474
|
@ -7,6 +7,7 @@
|
|||
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
|
||||
<outputRelativeToContentRoot value="true" />
|
||||
<module name="Genius-user" />
|
||||
<module name="Genius-project" />
|
||||
<module name="Genius-gateway" />
|
||||
<module name="Genius-auth" />
|
||||
<module name="Genius-common" />
|
||||
|
@ -18,6 +19,7 @@
|
|||
<module name="Genius-auth" options="-parameters" />
|
||||
<module name="Genius-common" options="-parameters" />
|
||||
<module name="Genius-gateway" options="-parameters" />
|
||||
<module name="Genius-project" options="-parameters" />
|
||||
<module name="Genius-user" options="-parameters" />
|
||||
</option>
|
||||
</component>
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
<file url="file://$PROJECT_DIR$/Genius-common/src/main/resources" charset="UTF-8" />
|
||||
<file url="file://$PROJECT_DIR$/Genius-gateway/src/main/java" charset="UTF-8" />
|
||||
<file url="file://$PROJECT_DIR$/Genius-gateway/src/main/resources" charset="UTF-8" />
|
||||
<file url="file://$PROJECT_DIR$/Genius-modules/Genius-project/src/main/java" charset="UTF-8" />
|
||||
<file url="file://$PROJECT_DIR$/Genius-modules/Genius-user/src/main/java" charset="UTF-8" />
|
||||
<file url="file://$PROJECT_DIR$/Genius-modules/Genius-user/src/main/resources" charset="UTF-8" />
|
||||
<file url="file://$PROJECT_DIR$/Genius-modules/src/main/java" charset="UTF-8" />
|
||||
|
|
|
@ -123,6 +123,16 @@
|
|||
<artifactId>aliyun-sdk-oss</artifactId>
|
||||
<version>3.11.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.swagger</groupId>
|
||||
<artifactId>swagger-annotations</artifactId>
|
||||
<version>1.6.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.baomidou</groupId>
|
||||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||||
<version>3.5.0</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
|
|
|
@ -0,0 +1,34 @@
|
|||
package com.bwie.common.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* </p>
|
||||
*
|
||||
* @author sikadi
|
||||
* @since 2023-10-08 03:10:30
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("t_cost_type")
|
||||
@ApiModel(value = "CostType对象", description = "")
|
||||
public class CostType {
|
||||
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private Integer id;
|
||||
|
||||
@ApiModelProperty("成本类型")
|
||||
@TableField("cost_type_name")
|
||||
private String costTypeName;
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,83 @@
|
|||
package com.bwie.common.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* </p>
|
||||
*
|
||||
* @author sikadi
|
||||
* @since 2023-10-08 02:57:22
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("t_project")
|
||||
@ApiModel(value = "Project对象", description = "")
|
||||
public class Project {
|
||||
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private Integer id;
|
||||
|
||||
@ApiModelProperty("项目名称")
|
||||
@TableField("project_name")
|
||||
private String projectName;
|
||||
|
||||
@ApiModelProperty("项目编号")
|
||||
@TableField("project_card")
|
||||
private String projectCard;
|
||||
|
||||
@ApiModelProperty("项目客户方")
|
||||
@TableField("project_client")
|
||||
private String projectClient;
|
||||
|
||||
@ApiModelProperty("项目立项时间")
|
||||
@TableField("project_create_time")
|
||||
private Date projectCreateTime;
|
||||
|
||||
@ApiModelProperty("项目开工时间")
|
||||
@TableField("project_start_time")
|
||||
private Date projectStartTime;
|
||||
|
||||
@ApiModelProperty("项目竣工时间")
|
||||
@TableField("project_completed_time")
|
||||
private Date projectCompletedTime;
|
||||
|
||||
@ApiModelProperty("项目负责人")
|
||||
@TableField("project_leader")
|
||||
private String projectLeader;
|
||||
|
||||
@ApiModelProperty("项目图片")
|
||||
@TableField("project_image")
|
||||
private String projectImage;
|
||||
|
||||
@ApiModelProperty("0:待提交 1:待审核 2:审核通过 3:审核不通过")
|
||||
@TableField("status")
|
||||
private Integer status;
|
||||
|
||||
@ApiModelProperty("成本类型集合")
|
||||
@TableField("projectCostTypeList")
|
||||
private List<ProjectCostType> projectCostTypeList;
|
||||
|
||||
@ApiModelProperty("总概算金额")
|
||||
@TableField("imputedAmountSum")
|
||||
private Double imputedAmountSum;
|
||||
|
||||
@ApiModelProperty("总估算金额")
|
||||
@TableField("estimatedAmountSum")
|
||||
private Double estimatedAmountSum;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,49 @@
|
|||
package com.bwie.common.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* </p>
|
||||
*
|
||||
* @author sikadi
|
||||
* @since 2023-10-08 03:10:40
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("t_project_cost_type")
|
||||
@ApiModel(value = "ProjectCostType对象", description = "")
|
||||
public class ProjectCostType {
|
||||
|
||||
@TableId("id")
|
||||
private Integer id;
|
||||
|
||||
@ApiModelProperty("项目id")
|
||||
@TableField("project_id")
|
||||
private Integer projectId;
|
||||
|
||||
@ApiModelProperty("项目成本类型id")
|
||||
@TableField("cost_type_id")
|
||||
private Integer costTypeId;
|
||||
|
||||
@ApiModelProperty("估算金额")
|
||||
@TableField("imputed_amount")
|
||||
private Double imputedAmount;
|
||||
|
||||
@ApiModelProperty("概算金额")
|
||||
@TableField("estimated_amount")
|
||||
private Double estimatedAmount;
|
||||
|
||||
@ApiModelProperty("0:待审核 1:审核通过 2:审核不通过 估算=概算则审核通过")
|
||||
@TableField("status")
|
||||
private Integer status;
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,34 @@
|
|||
package com.bwie.common.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* </p>
|
||||
*
|
||||
* @author sikadi
|
||||
* @since 2023-10-08 03:10:09
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("t_role")
|
||||
@ApiModel(value = "Role对象", description = "")
|
||||
public class Role {
|
||||
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private Integer id;
|
||||
|
||||
@ApiModelProperty("角色名称")
|
||||
@TableField("role_name")
|
||||
private String roleName;
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,38 @@
|
|||
target/
|
||||
!.mvn/wrapper/maven-wrapper.jar
|
||||
!**/src/main/**/target/
|
||||
!**/src/test/**/target/
|
||||
|
||||
### IntelliJ IDEA ###
|
||||
.idea/modules.xml
|
||||
.idea/jarRepositories.xml
|
||||
.idea/compiler.xml
|
||||
.idea/libraries/
|
||||
*.iws
|
||||
*.iml
|
||||
*.ipr
|
||||
|
||||
### Eclipse ###
|
||||
.apt_generated
|
||||
.classpath
|
||||
.factorypath
|
||||
.project
|
||||
.settings
|
||||
.springBeans
|
||||
.sts4-cache
|
||||
|
||||
### NetBeans ###
|
||||
/nbproject/private/
|
||||
/nbbuild/
|
||||
/dist/
|
||||
/nbdist/
|
||||
/.nb-gradle/
|
||||
build/
|
||||
!**/src/main/**/build/
|
||||
!**/src/test/**/build/
|
||||
|
||||
### VS Code ###
|
||||
.vscode/
|
||||
|
||||
### Mac OS ###
|
||||
.DS_Store
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.bwie</groupId>
|
||||
<artifactId>Genius-modules</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>Genius-project</artifactId>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>8</maven.compiler.source>
|
||||
<maven.compiler.target>8</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
</project>
|
|
@ -0,0 +1,7 @@
|
|||
package com.bwie;
|
||||
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Hello world!");
|
||||
}
|
||||
}
|
|
@ -10,7 +10,6 @@
|
|||
</parent>
|
||||
|
||||
<artifactId>Genius-user</artifactId>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>8</maven.compiler.source>
|
||||
<maven.compiler.target>8</maven.compiler.target>
|
||||
|
@ -18,13 +17,39 @@
|
|||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<!-- 系统公共 依赖 -->
|
||||
<dependency>
|
||||
<groupId>com.bwie</groupId>
|
||||
<artifactId>Genius-modules</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<artifactId>Genius-common</artifactId>
|
||||
</dependency>
|
||||
<!-- SpringBoot Web-->
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
</dependency>
|
||||
<!-- Druid -->
|
||||
<dependency>
|
||||
<groupId>com.alibaba</groupId>
|
||||
<artifactId>druid-spring-boot-starter</artifactId>
|
||||
<version>1.2.8</version>
|
||||
</dependency>
|
||||
<!-- Mysql Connector -->
|
||||
<dependency>
|
||||
<groupId>mysql</groupId>
|
||||
<artifactId>mysql-connector-java</artifactId>
|
||||
</dependency>
|
||||
<!-- Mybatis 依赖配置 -->
|
||||
<dependency>
|
||||
<groupId>org.mybatis.spring.boot</groupId>
|
||||
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||||
<version>2.2.2</version>
|
||||
</dependency>
|
||||
<!-- Pagehelper -->
|
||||
<dependency>
|
||||
<groupId>com.github.pagehelper</groupId>
|
||||
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
||||
<version>1.4.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
||||
|
||||
</project>
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
<packaging>pom</packaging>
|
||||
<modules>
|
||||
<module>Genius-user</module>
|
||||
<module>Genius-project</module>
|
||||
</modules>
|
||||
|
||||
<properties>
|
||||
|
@ -20,42 +21,4 @@
|
|||
<maven.compiler.target>8</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
|
||||
<dependencies>
|
||||
<!-- 系统公共 依赖 -->
|
||||
<dependency>
|
||||
<groupId>com.bwie</groupId>
|
||||
<artifactId>Genius-common</artifactId>
|
||||
</dependency>
|
||||
<!-- SpringBoot Web-->
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
</dependency>
|
||||
<!-- Druid -->
|
||||
<dependency>
|
||||
<groupId>com.alibaba</groupId>
|
||||
<artifactId>druid-spring-boot-starter</artifactId>
|
||||
<version>1.2.8</version>
|
||||
</dependency>
|
||||
<!-- Mysql Connector -->
|
||||
<dependency>
|
||||
<groupId>mysql</groupId>
|
||||
<artifactId>mysql-connector-java</artifactId>
|
||||
</dependency>
|
||||
<!-- Mybatis 依赖配置 -->
|
||||
<dependency>
|
||||
<groupId>org.mybatis.spring.boot</groupId>
|
||||
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||||
<version>2.2.2</version>
|
||||
</dependency>
|
||||
<!-- Pagehelper -->
|
||||
<dependency>
|
||||
<groupId>com.github.pagehelper</groupId>
|
||||
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
||||
<version>1.4.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
|
|
Loading…
Reference in New Issue