Sfoglia il codice sorgente

remove swagger-annotations

dk.technoboy 5 anni fa
parent
commit
cc786e6d76

+ 0 - 6
dolphinscheduler-dao/pom.xml

@@ -162,12 +162,6 @@
             <artifactId>spring-test</artifactId>
             <artifactId>spring-test</artifactId>
             <scope>test</scope>
             <scope>test</scope>
         </dependency>
         </dependency>
-		<dependency>
-			<groupId>io.swagger</groupId>
-			<artifactId>swagger-annotations</artifactId>
-			<version>1.5.20</version>
-			<scope>compile</scope>
-		</dependency>
 		<dependency>
 		<dependency>
 			<groupId>org.yaml</groupId>
 			<groupId>org.yaml</groupId>
 			<artifactId>snakeyaml</artifactId>
 			<artifactId>snakeyaml</artifactId>

+ 0 - 5
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/User.java

@@ -22,8 +22,6 @@ import com.baomidou.mybatisplus.annotation.IdType;
 import com.baomidou.mybatisplus.annotation.TableField;
 import com.baomidou.mybatisplus.annotation.TableField;
 import com.baomidou.mybatisplus.annotation.TableId;
 import com.baomidou.mybatisplus.annotation.TableId;
 import com.baomidou.mybatisplus.annotation.TableName;
 import com.baomidou.mybatisplus.annotation.TableName;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
 import lombok.Data;
 
 
 import java.util.Date;
 import java.util.Date;
@@ -33,7 +31,6 @@ import java.util.Date;
  */
  */
 @Data
 @Data
 @TableName("t_ds_user")
 @TableName("t_ds_user")
-@ApiModel(description = "UserModelDesc")
 public class  User {
 public class  User {
 
 
     /**
     /**
@@ -45,13 +42,11 @@ public class  User {
     /**
     /**
      * user name
      * user name
      */
      */
-    @ApiModelProperty(name = "userName", notes = "USER_NAME",dataType = "String",required = true)
     private String userName;
     private String userName;
 
 
     /**
     /**
      * user password
      * user password
      */
      */
-    @ApiModelProperty(name = "userPassword", notes = "USER_PASSWORD",dataType = "String",required = true)
     private String userPassword;
     private String userPassword;
 
 
     /**
     /**