|
|
@ -48,37 +48,50 @@ public interface CodeCustomerDao extends BaseDao<CodeCustomerEntity> { |
|
|
|
List<UploadListResultDTO> selectCodeList(UploadListFormDTO formDTO); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 根据客户id和客户端类型获取 代码模板ID和授权方AppId |
|
|
|
* @param customerId |
|
|
|
* @param clientType |
|
|
|
* @Description 根据客户id和客户端类型获取 代码模板ID和授权方AppId |
|
|
|
* @author zxc |
|
|
|
*/ |
|
|
|
TemplateAndAppIdResultDTO selectTemplateAndAppId(@Param("customerId") String customerId, @Param("clientType") String clientType); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 查询 code_customer 表ID |
|
|
|
* @param codeAuditRecord |
|
|
|
* @Description 查询 code_customer 表ID |
|
|
|
* @author zxc |
|
|
|
*/ |
|
|
|
String selectCodeCustomerId(CodeAuditRecordFormDTO codeAuditRecord); |
|
|
|
|
|
|
|
/** |
|
|
|
* 删除旧的上传记录 |
|
|
|
* @author zhaoqifeng |
|
|
|
* @date 2020/7/15 18:06 |
|
|
|
* |
|
|
|
* @param customerId |
|
|
|
* @param clientType |
|
|
|
* @return void |
|
|
|
* @author zhaoqifeng |
|
|
|
* @date 2020/7/15 18:06 |
|
|
|
*/ |
|
|
|
void deleteCode(@Param("customerId") String customerId, @Param("clientType") String clientType); |
|
|
|
|
|
|
|
/** |
|
|
|
* 获取审核中代码列表 |
|
|
|
* @author zhaoqifeng |
|
|
|
* @date 2020/7/15 18:17 |
|
|
|
* |
|
|
|
* @param source |
|
|
|
* @return java.util.List<com.epmet.dto.CodeCustomerDTO> |
|
|
|
* @author zhaoqifeng |
|
|
|
* @date 2020/7/15 18:17 |
|
|
|
*/ |
|
|
|
List<CodeCustomerDTO> selectAuditingCodeList(@Param("source") String source); |
|
|
|
|
|
|
|
/** |
|
|
|
* 获取上传代码信息 |
|
|
|
* |
|
|
|
* @param customerId |
|
|
|
* @param clientType |
|
|
|
* @return com.epmet.dto.CodeCustomerDTO |
|
|
|
* @author zhaoqifeng |
|
|
|
* @date 2020/7/31 15:54 |
|
|
|
*/ |
|
|
|
CodeCustomerDTO selectUploadCodeByCustomer(@Param("customerId") String customerId, @Param("clientType") String clientType); |
|
|
|
|
|
|
|
} |