浏览代码

core

master
chenchaod 6 天前
父节点
当前提交
006474210a

+ 2
- 0
gly-base-core/src/main/java/cn/com/taiji/core/entity/basic/QtkServicehallLocation.java 查看文件

@Size(max = 32) @Size(max = 32)
@Column(name = "CREATE_OPEN_ID") @Column(name = "CREATE_OPEN_ID")
private String createOpenId;//添加人 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 查看文件

@Size(max = 255) @Size(max = 255)
@Column(name = "OWNER_NEG_IMGURL") @Column(name = "OWNER_NEG_IMGURL")
private String ownerNegImgUrl;//车主证件反面图片 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 查看文件



List<QtkServicehallLocation> findByServicehallId(String hallId); List<QtkServicehallLocation> findByServicehallId(String hallId);


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

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

正在加载...
取消
保存