Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
13587540
Commit
13587540
authored
Jul 14, 2024
by
tianbo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
delete(all):ESEquipmentCategory,ESEquipmentCategoryDto
parent
ebe27d91
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
151 additions
and
494 deletions
+151
-494
ESEquipmentCategoryDto.java
.../boot/module/elevator/api/dto/ESEquipmentCategoryDto.java
+73
-73
ESEquipmentCategory.java
...mos/boot/module/elevator/biz/dao/ESEquipmentCategory.java
+1
-1
ESEquipmentCategoryDto.java
.../amos/boot/module/app/api/dto/ESEquipmentCategoryDto.java
+0
-73
ESEquipmentCategory.java
...oin/amos/boot/module/app/biz/dao/ESEquipmentCategory.java
+1
-1
ESEquipmentCategoryDto.java
.../boot/module/cylinder/api/dto/ESEquipmentCategoryDto.java
+0
-73
ESEquipmentCategory.java
...mos/boot/module/cylinder/biz/dao/ESEquipmentCategory.java
+0
-9
ESEquipmentCategoryDto.java
...amos/boot/module/jczs/api/dto/ESEquipmentCategoryDto.java
+74
-74
ESEquipmentCategory.java
...in/amos/boot/module/jczs/biz/dao/ESEquipmentCategory.java
+0
-10
ESEquipmentCategory.java
...join/amos/boot/module/jg/biz/dao/ESEquipmentCategory.java
+0
-10
ESEquipmentCategory.java
...in/amos/boot/module/jyjc/biz/dao/ESEquipmentCategory.java
+0
-10
ESEquipmentCategoryDto.java
.../amos/boot/module/tcm/api/dto/ESEquipmentCategoryDto.java
+0
-148
ESEquipmentCategory.java
...oin/amos/boot/module/tcm/biz/dao/ESEquipmentCategory.java
+1
-1
ESEquipmentCategoryDto.java
.../amos/boot/module/ymt/api/dto/ESEquipmentCategoryDto.java
+1
-1
ESEquipmentCategory.java
...oin/amos/boot/module/ymt/biz/dao/ESEquipmentCategory.java
+0
-10
No files found.
amos-boot-system-tzs/amos-boot-module-96333/amos-boot-module-96333-api/src/main/java/com/yeejoin/amos/boot/module/elevator/api/dto/ESEquipmentCategoryDto.java
View file @
13587540
package
com
.
yeejoin
.
amos
.
boot
.
module
.
elevator
.
api
.
dto
;
import
lombok.Data
;
import
lombok.experimental.Accessors
;
import
org.springframework.data.annotation.Id
;
import
org.springframework.data.elasticsearch.annotations.Document
;
import
org.springframework.data.elasticsearch.annotations.Field
;
import
org.springframework.data.elasticsearch.annotations.FieldType
;
/**
* @Author cpp
* @Description
* @Date 2023/6/5
*/
@Data
@Accessors
(
chain
=
true
)
@Document
(
indexName
=
"idx_biz_view_jg_all"
,
shards
=
6
,
replicas
=
2
)
public
class
ESEquipmentCategoryDto
{
@Id
private
String
SEQUENCE_NBR
;
@Field
(
type
=
FieldType
.
Text
)
private
String
ORG_BRANCH_NAME
;
@Field
(
type
=
FieldType
.
Text
)
private
String
ORG_BRANCH_CODE
;
@Field
(
type
=
FieldType
.
Text
)
private
String
USE_UNIT_NAME
;
@Field
(
type
=
FieldType
.
Text
)
private
String
USE_UNIT_CREDIT_CODE
;
@Field
(
type
=
FieldType
.
Text
)
private
String
EQU_LIST_CODE
;
@Field
(
type
=
FieldType
.
Text
)
private
String
EQU_LIST
;
@Field
(
type
=
FieldType
.
Text
)
private
String
EQU_CATEGORY
;
@Field
(
type
=
FieldType
.
Text
)
private
String
USE_ORG_CODE
;
@Field
(
type
=
FieldType
.
Text
)
private
String
CODE96333
;
@Field
(
type
=
FieldType
.
Text
)
private
String
EQU_CODE
;
@Field
(
type
=
FieldType
.
Text
)
private
String
SUPERVISORY_CODE
;
@Field
(
type
=
FieldType
.
Text
)
private
String
USE_PLACE
;
@Field
(
type
=
FieldType
.
Text
)
private
String
ADDRESS
;
@Field
(
type
=
FieldType
.
Integer
)
private
Integer
EQU_STATE
;
@Field
(
type
=
FieldType
.
Text
)
private
String
STATUS
;
@Field
(
type
=
FieldType
.
Long
)
private
Long
REC_DATE
;
}
//
package com.yeejoin.amos.boot.module.elevator.api.dto;
//
//
import lombok.Data;
//
import lombok.experimental.Accessors;
//
import org.springframework.data.annotation.Id;
//
import org.springframework.data.elasticsearch.annotations.Document;
//
import org.springframework.data.elasticsearch.annotations.Field;
//
import org.springframework.data.elasticsearch.annotations.FieldType;
//
/
//
**
//
* @Author cpp
//
* @Description
//
* @Date 2023/6/5
//
*/
//
@Data
//
@Accessors(chain = true)
//
@Document(indexName = "idx_biz_view_jg_all", shards = 6, replicas = 2)
//
public class ESEquipmentCategoryDto {
//
//
@Id
//
private String SEQUENCE_NBR;
//
//
@Field(type = FieldType.Text)
//
private String ORG_BRANCH_NAME;
//
//
@Field(type = FieldType.Text)
//
private String ORG_BRANCH_CODE;
//
//
//
@Field(type = FieldType.Text)
//
private String USE_UNIT_NAME;
//
//
@Field(type = FieldType.Text)
//
private String USE_UNIT_CREDIT_CODE;
//
//
@Field(type = FieldType.Text)
//
private String EQU_LIST_CODE;
//
//
@Field(type = FieldType.Text)
//
private String EQU_LIST;
//
//
@Field(type = FieldType.Text)
//
private String EQU_CATEGORY;
//
//
@Field(type = FieldType.Text)
//
private String USE_ORG_CODE;
//
//
@Field(type = FieldType.Text)
//
private String CODE96333;
//
//
@Field(type = FieldType.Text)
//
private String EQU_CODE;
//
//
@Field(type = FieldType.Text)
//
private String SUPERVISORY_CODE;
//
//
@Field(type = FieldType.Text)
//
private String USE_PLACE;
//
//
@Field(type = FieldType.Text)
//
private String ADDRESS;
//
//
@Field(type = FieldType.Integer)
//
private Integer EQU_STATE;
//
//
@Field(type = FieldType.Text)
//
private String STATUS;
//
//
@Field(type = FieldType.Long)
//
private Long REC_DATE;
//
//
//
}
amos-boot-system-tzs/amos-boot-module-96333/amos-boot-module-96333-biz/src/main/java/com/yeejoin/amos/boot/module/elevator/biz/dao/ESEquipmentCategory.java
View file @
13587540
...
...
@@ -6,4 +6,4 @@
//
//@Repository
//public interface ESEquipmentCategory extends PagingAndSortingRepository<ESEquipmentCategoryDto, String> {
//}
//}
1
amos-boot-system-tzs/amos-boot-module-app/amos-boot-module-app-api/src/main/java/com/yeejoin/amos/boot/module/app/api/dto/ESEquipmentCategoryDto.java
deleted
100644 → 0
View file @
ebe27d91
//package com.yeejoin.amos.boot.module.app.api.dto;
//
//import lombok.Data;
//import lombok.experimental.Accessors;
//import org.springframework.data.annotation.Id;
//import org.springframework.data.elasticsearch.annotations.Document;
//import org.springframework.data.elasticsearch.annotations.Field;
//import org.springframework.data.elasticsearch.annotations.FieldType;
//
///**
// * @Author cpp
// * @Description
// * @Date 2023/6/5
// */
//@Data
//@Accessors(chain = true)
//@Document(indexName = "idx_biz_view_jg_all", shards = 6, replicas = 2)
//public class ESEquipmentCategoryDto {
//
// @Id
// private String SEQUENCE_NBR;
//
// @Field(type = FieldType.Text)
// private String ORG_BRANCH_NAME;
//
// @Field(type = FieldType.Text)
// private String ORG_BRANCH_CODE;
//
//
// @Field(type = FieldType.Text)
// private String USE_UNIT_NAME;
//
// @Field(type = FieldType.Text)
// private String USE_UNIT_CREDIT_CODE;
//
// @Field(type = FieldType.Text)
// private String EQU_LIST_CODE;
//
// @Field(type = FieldType.Text)
// private String EQU_LIST;
//
// @Field(type = FieldType.Text)
// private String EQU_CATEGORY;
//
// @Field(type = FieldType.Text)
// private String USE_ORG_CODE;
//
// @Field(type = FieldType.Text)
// private String CODE96333;
//
// @Field(type = FieldType.Text)
// private String EQU_CODE;
//
// @Field(type = FieldType.Text)
// private String SUPERVISORY_CODE;
//
// @Field(type = FieldType.Text)
// private String USE_PLACE;
//
// @Field(type = FieldType.Text)
// private String ADDRESS;
//
// @Field(type = FieldType.Integer)
// private Integer EQU_STATE;
//
// @Field(type = FieldType.Text)
// private String STATUS;
//
// @Field(type = FieldType.Long)
// private Long REC_DATE;
//
//
//}
amos-boot-system-tzs/amos-boot-module-app/amos-boot-module-app-biz/src/main/java/com/yeejoin/amos/boot/module/app/biz/dao/ESEquipmentCategory.java
View file @
13587540
...
...
@@ -6,4 +6,4 @@
//
//@Repository
//public interface ESEquipmentCategory extends PagingAndSortingRepository<ESEquipmentCategoryDto, String> {
//}
//}
1
amos-boot-system-tzs/amos-boot-module-cylinder/amos-boot-module-cylinder-api/src/main/java/com/yeejoin/amos/boot/module/cylinder/api/dto/ESEquipmentCategoryDto.java
deleted
100644 → 0
View file @
ebe27d91
//package com.yeejoin.amos.boot.module.cylinder.api.dto;
//
//import lombok.Data;
//import lombok.experimental.Accessors;
//import org.springframework.data.annotation.Id;
//import org.springframework.data.elasticsearch.annotations.Document;
//import org.springframework.data.elasticsearch.annotations.Field;
//import org.springframework.data.elasticsearch.annotations.FieldType;
//
///**
// * @Author cpp
// * @Description
// * @Date 2023/6/5
// */
//@Data
//@Accessors(chain = true)
//@Document(indexName = "idx_biz_view_jg_all", shards = 6, replicas = 2)
//public class ESEquipmentCategoryDto {
//
// @Id
// private String SEQUENCE_NBR;
//
// @Field(type = FieldType.Text)
// private String ORG_BRANCH_NAME;
//
// @Field(type = FieldType.Text)
// private String ORG_BRANCH_CODE;
//
//
// @Field(type = FieldType.Text)
// private String USE_UNIT_NAME;
//
// @Field(type = FieldType.Text)
// private String USE_UNIT_CREDIT_CODE;
//
// @Field(type = FieldType.Text)
// private String EQU_LIST_CODE;
//
// @Field(type = FieldType.Text)
// private String EQU_LIST;
//
// @Field(type = FieldType.Text)
// private String EQU_CATEGORY;
//
// @Field(type = FieldType.Text)
// private String USE_ORG_CODE;
//
// @Field(type = FieldType.Text)
// private String CODE96333;
//
// @Field(type = FieldType.Text)
// private String EQU_CODE;
//
// @Field(type = FieldType.Text)
// private String SUPERVISORY_CODE;
//
// @Field(type = FieldType.Text)
// private String USE_PLACE;
//
// @Field(type = FieldType.Text)
// private String ADDRESS;
//
// @Field(type = FieldType.Integer)
// private Integer EQU_STATE;
//
// @Field(type = FieldType.Text)
// private String STATUS;
//
// @Field(type = FieldType.Long)
// private Long REC_DATE;
//
//
//}
amos-boot-system-tzs/amos-boot-module-cylinder/amos-boot-module-cylinder-biz/src/main/java/com/yeejoin/amos/boot/module/cylinder/biz/dao/ESEquipmentCategory.java
deleted
100644 → 0
View file @
ebe27d91
//package com.yeejoin.amos.boot.module.cylinder.biz.dao;
//
//import com.yeejoin.amos.boot.module.cylinder.api.dto.ESEquipmentCategoryDto;
//import org.springframework.data.repository.PagingAndSortingRepository;
//import org.springframework.stereotype.Repository;
//
//@Repository
//public interface ESEquipmentCategory extends PagingAndSortingRepository<ESEquipmentCategoryDto, String> {
//}
amos-boot-system-tzs/amos-boot-module-jczs/amos-boot-module-jczs-api/src/main/java/com/yeejoin/amos/boot/module/jczs/api/dto/ESEquipmentCategoryDto.java
View file @
13587540
package
com
.
yeejoin
.
amos
.
boot
.
module
.
jczs
.
api
.
dto
;
import
lombok.Data
;
import
lombok.experimental.Accessors
;
import
org.springframework.data.annotation.Id
;
import
org.springframework.data.elasticsearch.annotations.DateFormat
;
import
org.springframework.data.elasticsearch.annotations.Document
;
import
org.springframework.data.elasticsearch.annotations.Field
;
import
org.springframework.data.elasticsearch.annotations.FieldType
;
/**
* @Author cpp
* @Description
* @Date 2023/6/5
*/
@Data
@Accessors
(
chain
=
true
)
@Document
(
indexName
=
"idx_biz_view_jg_all"
,
shards
=
6
,
replicas
=
2
)
public
class
ESEquipmentCategoryDto
{
@Id
private
String
SEQUENCE_NBR
;
@Field
(
type
=
FieldType
.
Text
)
private
String
ORG_BRANCH_NAME
;
@Field
(
type
=
FieldType
.
Text
)
private
String
ORG_BRANCH_CODE
;
@Field
(
type
=
FieldType
.
Text
)
private
String
USE_UNIT_NAME
;
@Field
(
type
=
FieldType
.
Text
)
private
String
USE_UNIT_CREDIT_CODE
;
@Field
(
type
=
FieldType
.
Text
)
private
String
EQU_LIST_CODE
;
@Field
(
type
=
FieldType
.
Text
)
private
String
EQU_LIST
;
@Field
(
type
=
FieldType
.
Text
)
private
String
EQU_CATEGORY
;
@Field
(
type
=
FieldType
.
Text
)
private
String
USE_ORG_CODE
;
@Field
(
type
=
FieldType
.
Text
)
private
String
CODE96333
;
@Field
(
type
=
FieldType
.
Text
)
private
String
EQU_CODE
;
@Field
(
type
=
FieldType
.
Text
)
private
String
SUPERVISORY_CODE
;
@Field
(
type
=
FieldType
.
Text
)
private
String
USE_PLACE
;
@Field
(
type
=
FieldType
.
Text
)
private
String
ADDRESS
;
@Field
(
type
=
FieldType
.
Integer
)
private
Integer
EQU_STATE
;
@Field
(
type
=
FieldType
.
Text
)
private
String
STATUS
;
@Field
(
type
=
FieldType
.
Long
)
private
Long
REC_DATE
;
}
//
package com.yeejoin.amos.boot.module.jczs.api.dto;
//
//
import lombok.Data;
//
import lombok.experimental.Accessors;
//
import org.springframework.data.annotation.Id;
//
import org.springframework.data.elasticsearch.annotations.DateFormat;
//
import org.springframework.data.elasticsearch.annotations.Document;
//
import org.springframework.data.elasticsearch.annotations.Field;
//
import org.springframework.data.elasticsearch.annotations.FieldType;
//
/
//
**
//
* @Author cpp
//
* @Description
//
* @Date 2023/6/5
//
*/
//
@Data
//
@Accessors(chain = true)
//
@Document(indexName = "idx_biz_view_jg_all", shards = 6, replicas = 2)
//
public class ESEquipmentCategoryDto {
//
//
@Id
//
private String SEQUENCE_NBR;
//
//
@Field(type = FieldType.Text)
//
private String ORG_BRANCH_NAME;
//
//
@Field(type = FieldType.Text)
//
private String ORG_BRANCH_CODE;
//
//
//
@Field(type = FieldType.Text)
//
private String USE_UNIT_NAME;
//
//
@Field(type = FieldType.Text)
//
private String USE_UNIT_CREDIT_CODE;
//
//
@Field(type = FieldType.Text)
//
private String EQU_LIST_CODE;
//
//
@Field(type = FieldType.Text)
//
private String EQU_LIST;
//
//
@Field(type = FieldType.Text)
//
private String EQU_CATEGORY;
//
//
@Field(type = FieldType.Text)
//
private String USE_ORG_CODE;
//
//
@Field(type = FieldType.Text)
//
private String CODE96333;
//
//
@Field(type = FieldType.Text)
//
private String EQU_CODE;
//
//
@Field(type = FieldType.Text)
//
private String SUPERVISORY_CODE;
//
//
@Field(type = FieldType.Text)
//
private String USE_PLACE;
//
//
@Field(type = FieldType.Text)
//
private String ADDRESS;
//
//
@Field(type = FieldType.Integer)
//
private Integer EQU_STATE;
//
//
@Field(type = FieldType.Text)
//
private String STATUS;
//
//
@Field(type = FieldType.Long)
//
private Long REC_DATE;
//
//
//
}
amos-boot-system-tzs/amos-boot-module-jczs/amos-boot-module-jczs-biz/src/main/java/com/yeejoin/amos/boot/module/jczs/biz/dao/ESEquipmentCategory.java
deleted
100644 → 0
View file @
ebe27d91
//package com.yeejoin.amos.boot.module.jczs.biz.dao;
//
//import com.yeejoin.amos.boot.module.jczs.api.dto.ESEquipmentCategoryDto;
//import com.yeejoin.amos.boot.module.jczs.api.entity.EsElevator;
//import org.springframework.data.repository.PagingAndSortingRepository;
//import org.springframework.stereotype.Repository;
//
//@Repository
//public interface ESEquipmentCategory extends PagingAndSortingRepository<ESEquipmentCategoryDto, String> {
//}
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/dao/ESEquipmentCategory.java
deleted
100644 → 0
View file @
ebe27d91
//package com.yeejoin.amos.boot.module.jg.biz.dao;
//
//
//import com.yeejoin.amos.boot.module.common.api.dto.ESEquipmentCategoryDto;
//import org.springframework.data.repository.PagingAndSortingRepository;
//import org.springframework.stereotype.Repository;
//
//@Repository
//public interface ESEquipmentCategory extends PagingAndSortingRepository<ESEquipmentCategoryDto, String> {
//}
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/java/com/yeejoin/amos/boot/module/jyjc/biz/dao/ESEquipmentCategory.java
deleted
100644 → 0
View file @
ebe27d91
//package com.yeejoin.amos.boot.module.jyjc.biz.dao;
//
//
//import com.yeejoin.amos.boot.module.common.api.dto.ESEquipmentCategoryDto;
//import org.springframework.data.repository.PagingAndSortingRepository;
//import org.springframework.stereotype.Repository;
//
//@Repository
//public interface ESEquipmentCategory extends PagingAndSortingRepository<ESEquipmentCategoryDto, String> {
//}
amos-boot-system-tzs/amos-boot-module-tcm/amos-boot-module-tcm-api/src/main/java/com/yeejoin/amos/boot/module/tcm/api/dto/ESEquipmentCategoryDto.java
deleted
100644 → 0
View file @
ebe27d91
//package com.yeejoin.amos.boot.module.tcm.api.dto;
//
//import lombok.experimental.Accessors;
//import org.springframework.data.annotation.Id;
//import org.springframework.data.elasticsearch.annotations.Document;
//import org.springframework.data.elasticsearch.annotations.Field;
//import org.springframework.data.elasticsearch.annotations.FieldType;
//
///**
// * @Author cpp
// * @Description
// * @Date 2023/6/5
// */
////@Data
//@Accessors(chain = true)
//@Document(indexName = "idx_biz_view_jg_all", shards = 6, replicas = 2)
//public class ESEquipmentCategoryDto {
//
// @Id
// private String SEQUENCE_NBR;
//
// @Field(type = FieldType.Text)
// private String ORG_BRANCH_NAME;
//
// @Field(type = FieldType.Text)
// private String ORG_BRANCH_CODE;
//
// @Field(type = FieldType.Text)
// private String USE_UNIT_NAME;
//
// @Field(type = FieldType.Text)
// private String USE_UNIT_CREDIT_CODE;
//
// @Field(type = FieldType.Keyword)
// private String EQU_LIST_CODE;
//
// @Field(type = FieldType.Text)
// private String EQU_LIST;
//
// @Field(type = FieldType.Text)
// private String EQU_CATEGORY;
//
// @Field(type = FieldType.Keyword)
// private String EQU_CATEGORY_CODE;
//
// @Field(type = FieldType.Keyword)
// private String USE_ORG_CODE;
//
// @Field(type = FieldType.Text)
// private String CODE96333;
//
// @Field(type = FieldType.Text)
// private String EQU_CODE;
//
// @Field(type = FieldType.Keyword)
// private String SUPERVISORY_CODE;
//
// @Field(type = FieldType.Text)
// private String USE_PLACE;
//
// @Field(type = FieldType.Text)
// private String ADDRESS;
//
// @Field(type = FieldType.Integer)
// private Integer EQU_STATE;
//
// @Field(type = FieldType.Keyword)
// private String STATUS;
//
// @Field(type = FieldType.Long)
// private Long REC_DATE;
//
// @Field(type = FieldType.Text)
// private String SAFETY_MANAGER;
//
// @Field(type = FieldType.Text)
// private String PHONE;
//
// @Field(type = FieldType.Text)
// private String MAINTAIN_UNIT;
//
// @Field(type = FieldType.Text)
// private String USE_INNER_CODE;
//
// @Field(type = FieldType.Text)
// private String FACTORY_NUM;
//
// @Field(type = FieldType.Text)
// private String PRODUCE_UNIT_NAME;
//
// @Field(type = FieldType.Text)
// private String INSPECT_REPORT;
//
// @Field(type = FieldType.Text)
// private String NEXT_INSPECT_DATE;
//
// @Field(type = FieldType.Text)
// private String CONSTRUCTION_TYPE;
//
// @Field(type = FieldType.Text)
// private String USC_UNIT_CREDIT_CODE;
//
// @Field(type = FieldType.Text)
// private String USC_UNIT_NAME;
//
// @Field(type = FieldType.Text)
// private String USC_DATE;
//
// @Field(type = FieldType.Text)
// private String EQU_DEFINE;
//
// @Field(type = FieldType.Text)
// private String EQU_DEFINE_CODE;
//
// @Field(type = FieldType.Text)
// private String PRODUCT_NAME;
//
// @Field(type = FieldType.Text)
// private String BRAND_NAME;
//
// @Field(type = FieldType.Text)
// private String EQU_TYPE;
//
// @Field(type = FieldType.Text)
// private String PRODUCE_DATE;
//
// @Field(type = FieldType.Text)
// private String DATA_SOURCE;
//
// @Field(type = FieldType.Text)
// private String WHETHER_VEHICLE_CYLINDER;
//
// @Field(type = FieldType.Text)
// private String WHETHER_SKID_MOUNTED_PRESSURE_VESSEL;
//
// /**
// * 问题状态
// */
// @Field(type = FieldType.Text)
// private String problemStatus;
//
// /**
// * 是否纳管:true - 已纳管 false-未纳管
// */
// @Field(type = FieldType.Boolean)
// private Boolean IS_INTO_MANAGEMENT;
//
//}
amos-boot-system-tzs/amos-boot-module-tcm/amos-boot-module-tcm-biz/src/main/java/com/yeejoin/amos/boot/module/tcm/biz/dao/ESEquipmentCategory.java
View file @
13587540
...
...
@@ -7,4 +7,4 @@
//
//@Repository
//public interface ESEquipmentCategory extends PagingAndSortingRepository<ESEquipmentCategoryDto, String> {
//}
//}
1
amos-boot-system-tzs/amos-boot-module-ymt/amos-boot-module-ymt-api/src/main/java/com/yeejoin/amos/boot/module/ymt/api/dto/ESEquipmentCategoryDto.java
View file @
13587540
//package com.yeejoin.amos.boot.module.ymt.api.dto;
//package com.yeejoin.amos.boot.module.ymt.api.dto;
1
//
//import lombok.Data;
//import lombok.experimental.Accessors;
...
...
amos-boot-system-tzs/amos-boot-module-ymt/amos-boot-module-ymt-biz/src/main/java/com/yeejoin/amos/boot/module/ymt/biz/dao/ESEquipmentCategory.java
deleted
100644 → 0
View file @
ebe27d91
//package com.yeejoin.amos.boot.module.ymt.biz.dao;
//
//
//import com.yeejoin.amos.boot.module.common.api.dto.ESEquipmentCategoryDto;
//import org.springframework.data.repository.PagingAndSortingRepository;
//import org.springframework.stereotype.Repository;
//
//@Repository
//public interface ESEquipmentCategory extends PagingAndSortingRepository<ESEquipmentCategoryDto, String> {
//}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment