Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
api
Overview
Overview
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
首航-临时账号
api
Commits
781dcd7e
Commit
781dcd7e
authored
Sep 20, 2017
by
Java-金吉宝
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复录音重复记录bug
parent
6b00ddb1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
59 deletions
+63
-59
CallDao.java
src/com/ejweb/modules/call/dao/CallDao.java
+63
-59
CallService.java
src/com/ejweb/modules/call/service/CallService.java
+0
-0
No files found.
src/com/ejweb/modules/call/dao/CallDao.java
View file @
781dcd7e
package
com
.
ejweb
.
modules
.
call
.
dao
;
import
java.util.List
;
import
com.ejweb.core.base.BaseDao
;
import
com.ejweb.modules.call.bean.CallFindPhoneInfoBean
;
import
com.ejweb.modules.call.bean.CallPhoneBean
;
import
com.ejweb.modules.call.bean.CallRecordListBean
;
import
com.ejweb.modules.call.entity.CallPhoneAreaEntity
;
import
com.ejweb.modules.call.entity.CallPhoneInfoListEntity
;
import
com.ejweb.modules.call.entity.CallRecordEntity
;
import
com.ejweb.modules.call.entity.CallRecordListEntity
;
import
com.ejweb.modules.call.entity.CallSoundRecordBean
;
import
com.ejweb.modules.call.entity.HuaweiNumListEntity
;
import
com.ejweb.modules.call.entity.MemberEntity
;
public
interface
CallDao
extends
BaseDao
{
public
Integer
createCallRecord
(
CallRecordEntity
entity
);
public
Integer
updateCallRecord
(
CallRecordEntity
entity
);
public
Integer
addCallPhoneList
(
List
<
CallPhoneBean
>
phoneList
);
public
List
<
CallRecordListEntity
>
getCallRecordList
(
CallRecordListBean
bean
);
public
List
<
CallRecordListEntity
>
getCallSoundList
(
CallRecordListBean
bean
);
public
List
<
CallPhoneInfoListEntity
>
findUserByCallPhone
(
CallFindPhoneInfoBean
bean
);
public
List
<
CallPhoneInfoListEntity
>
findUserByCallRecord
(
CallFindPhoneInfoBean
bean
);
public
List
<
CallPhoneInfoListEntity
>
findSeatListByCallPhone
(
CallFindPhoneInfoBean
bean
);
public
CallPhoneInfoListEntity
findUserInfoByNumOrId
(
CallFindPhoneInfoBean
bean
);
public
CallPhoneAreaEntity
getPhoneAreaByAreaCode
(
CallPhoneAreaEntity
areaCode
);
public
CallPhoneAreaEntity
getPhoneAreaByMobile
(
CallPhoneAreaEntity
mobile
);
public
Integer
addPhoneAreaRecord
(
CallPhoneAreaEntity
entity
);
public
Integer
addPhoneAreaCode
(
CallPhoneAreaEntity
entity
);
public
Integer
addSoundRecord
(
CallSoundRecordBean
entity
);
public
List
<
CallPhoneInfoListEntity
>
findPhneListByHuaweiNum
(
HuaweiNumListEntity
entity
);
public
String
GetPhoneById
(
String
id
);
public
List
<
MemberEntity
>
getMemberList
(
String
recordId
);
public
String
getNameByPhone
(
String
mobileNubmer
);
public
String
getNameByPhoneFromSeat
(
String
createPhone
);
public
String
getIdByPhoneFromSeat
(
String
createPhone
);
public
String
getIdByPhone
(
String
mobileNubmer
);
}
package
com
.
ejweb
.
modules
.
call
.
dao
;
import
java.util.List
;
import
com.ejweb.core.base.BaseDao
;
import
com.ejweb.modules.call.bean.CallFindPhoneInfoBean
;
import
com.ejweb.modules.call.bean.CallPhoneBean
;
import
com.ejweb.modules.call.bean.CallRecordListBean
;
import
com.ejweb.modules.call.entity.CallPhoneAreaEntity
;
import
com.ejweb.modules.call.entity.CallPhoneInfoListEntity
;
import
com.ejweb.modules.call.entity.CallRecordEntity
;
import
com.ejweb.modules.call.entity.CallRecordListEntity
;
import
com.ejweb.modules.call.entity.CallSoundRecordBean
;
import
com.ejweb.modules.call.entity.HuaweiNumListEntity
;
import
com.ejweb.modules.call.entity.MemberEntity
;
public
interface
CallDao
extends
BaseDao
{
public
Integer
createCallRecord
(
CallRecordEntity
entity
);
public
Integer
updateCallRecord
(
CallRecordEntity
entity
);
public
Integer
addCallPhoneList
(
List
<
CallPhoneBean
>
phoneList
);
public
List
<
CallRecordListEntity
>
getCallRecordList
(
CallRecordListBean
bean
);
public
List
<
CallRecordListEntity
>
getCallSoundList
(
CallRecordListBean
bean
);
public
List
<
CallPhoneInfoListEntity
>
findUserByCallPhone
(
CallFindPhoneInfoBean
bean
);
public
List
<
CallPhoneInfoListEntity
>
findUserByCallRecord
(
CallFindPhoneInfoBean
bean
);
public
List
<
CallPhoneInfoListEntity
>
findSeatListByCallPhone
(
CallFindPhoneInfoBean
bean
);
public
CallPhoneInfoListEntity
findUserInfoByNumOrId
(
CallFindPhoneInfoBean
bean
);
public
CallPhoneAreaEntity
getPhoneAreaByAreaCode
(
CallPhoneAreaEntity
areaCode
);
public
CallPhoneAreaEntity
getPhoneAreaByMobile
(
CallPhoneAreaEntity
mobile
);
public
Integer
addPhoneAreaRecord
(
CallPhoneAreaEntity
entity
);
public
Integer
addPhoneAreaCode
(
CallPhoneAreaEntity
entity
);
public
Integer
addSoundRecord
(
CallSoundRecordBean
entity
);
public
List
<
CallPhoneInfoListEntity
>
findPhneListByHuaweiNum
(
HuaweiNumListEntity
entity
);
public
String
GetPhoneById
(
String
id
);
public
List
<
MemberEntity
>
getMemberList
(
String
recordId
);
public
String
getNameByPhone
(
String
mobileNubmer
);
public
String
getNameByPhoneFromSeat
(
String
createPhone
);
public
String
getIdByPhoneFromSeat
(
String
createPhone
);
public
String
getIdByPhone
(
String
mobileNubmer
);
public
CallRecordListEntity
get
(
CallRecordListEntity
callRecordListEntity
);
public
List
<
CallRecordListEntity
>
getList
(
CallRecordListEntity
callRecordListEntity
);
}
src/com/ejweb/modules/call/service/CallService.java
View file @
781dcd7e
This diff is collapsed.
Click to expand it.
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