@@ -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-禁止办理 | |||
} |
@@ -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;//安装照片 | |||
} |
@@ -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 ") |