소스 검색

update: Vo

guo00guo 5 년 전
부모
커밋
4040835dad

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
site/src/main/java/com/mooctest/crowd/site/controller/CommonController.java


+ 0 - 2
site/src/main/java/com/mooctest/crowd/site/data/vo/ApplicationTypeVO.java

@@ -11,13 +11,11 @@ import java.util.List;
  */
 @Data
 public class ApplicationTypeVO {
-    private Long id;
     private String code;
     private String name;
     private List<TestTypeVO> testTypeList;
 
     public ApplicationTypeVO(ApplicationType applicationType){
-        id = applicationType.getId();
         code = applicationType.getCode();
         name = applicationType.getName();
     }

+ 0 - 2
site/src/main/java/com/mooctest/crowd/site/data/vo/ResourceVO.java

@@ -9,12 +9,10 @@ import lombok.Data;
  */
 @Data
 public class ResourceVO {
-    private Long id;
     private String code;
     private String name;
 
     public ResourceVO(Resource resource){
-        id = resource.getId();
         code = resource.getCode();
         name = resource.getName();
     }

+ 0 - 2
site/src/main/java/com/mooctest/crowd/site/data/vo/TestTypeVO.java

@@ -9,12 +9,10 @@ import lombok.Data;
  */
 @Data
 public class TestTypeVO {
-    private Long id;
     private String code;
     private String name;
 
     public TestTypeVO(TestType testType){
-        id = testType.getId();
         code = testType.getCode();
         name = testType.getName();
     }

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.