Browse Source

core

master
chenchaod 6 days ago
parent
commit
006474210a

+ 2
- 0
gly-base-core/src/main/java/cn/com/taiji/core/entity/basic/QtkServicehallLocation.java View File

@@ -63,5 +63,7 @@ public class QtkServicehallLocation extends StringPropertyUUIDEntity {
@Size(max = 32)
@Column(name = "CREATE_OPEN_ID")
private String createOpenId;//添加人
@Column(name = "TYPE")
private Integer type = 1;//类型1-可办理2-禁止办理

}

+ 3
- 0
gly-base-core/src/main/java/cn/com/taiji/core/entity/issue/IssueOrderinfoExt.java View File

@@ -141,5 +141,8 @@ public class IssueOrderinfoExt extends AbstractStringPropertyUUIDEntity {
@Size(max = 255)
@Column(name = "OWNER_NEG_IMGURL")
private String ownerNegImgUrl;//车主证件反面图片
@Size(max = 255)
@Column(name = "INSTALL_IMG_URL")
private String installImgUrl;//安装照片

}

+ 3
- 0
gly-base-core/src/main/java/cn/com/taiji/core/repo/jpa/basic/QtkServicehallLocationRepo.java View File

@@ -12,6 +12,9 @@ public interface QtkServicehallLocationRepo extends AbstractJpaRepo<QtkServiceha

List<QtkServicehallLocation> findByServicehallId(String hallId);

@Query("from QtkServicehallLocation where servicehallId = ?1 and type = ?2")
List<QtkServicehallLocation> listLocation(String hallId,Integer type);

@Transactional
@Modifying
@Query("delete from QtkServicehallLocation where servicehallId=?1 ")

Loading…
Cancel
Save