Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
T
tcm-system
Project
Project
Details
Activity
Releases
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
TCM
tcm-system
Commits
778af98c
Commit
778af98c
authored
Apr 25, 2021
by
tangf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改商户余额资金流水
parent
1b1a9272
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
75 additions
and
16 deletions
+75
-16
CompanyDaoImpl.java
...a/com/pangding/web/authority/dao/impl/CompanyDaoImpl.java
+6
-1
CompanyServiceImpl.java
...ngding/web/authority/service/impl/CompanyServiceImpl.java
+1
-0
ListCompanyReqVo.java
...com/pangding/web/authority/vo/reqvo/ListCompanyReqVo.java
+68
-15
No files found.
src/main/java/com/pangding/web/authority/dao/impl/CompanyDaoImpl.java
View file @
778af98c
...
...
@@ -31,7 +31,12 @@ public class CompanyDaoImpl extends BaseDaoImpl implements CompanyDao {
.
add
(
"companyType"
,
"and company_type = ? "
)
.
add
(
"companyAttribute"
,
"and company_attribute = ? "
)
.
add
(
"examineStatus"
,
"and examine_status = ?"
)
.
add
(
"companyId"
,
"and invitation_company_id = ? "
);
.
add
(
"companyId"
,
"and invitation_company_id = ? "
)
.
add
(
"contactName"
,
"and contact_name = ? "
)
.
add
(
"contactPhone"
,
"and contact_phone = ? "
)
.
add
(
"status"
,
"and status = ? "
)
.
add
(
"startDate"
,
"and create_time >= ? "
)
.
add
(
"endDate"
,
"and create_time <= ? "
);
getSql
(
DaoConst
.
LOAD
).
addCode
(
"{FIELD}"
,
",b.*"
,
"{INNER}"
,
"INNER JOIN pd_company_extend b ON a.id = b.id"
);
...
...
src/main/java/com/pangding/web/authority/service/impl/CompanyServiceImpl.java
View file @
778af98c
...
...
@@ -892,6 +892,7 @@ public class CompanyServiceImpl implements CompanyService {
*/
@Override
public
PageSizeData
<
CompanyResVo
>
myInvite
(
ListCompanyReqVo
reqVo
)
{
reqVo
.
setStatus
(
6
);
return
companyDao
.
getCompanyList
(
reqVo
);
}
...
...
src/main/java/com/pangding/web/authority/vo/reqvo/ListCompanyReqVo.java
View file @
778af98c
package
com
.
pangding
.
web
.
authority
.
vo
.
reqvo
;
import
com.yanzuoguang.util.vo.PageSizeReqVo
;
import
io.swagger.annotations.ApiModelProperty
;
/**
* @Author zhangjinyao
...
...
@@ -9,22 +10,34 @@ import com.yanzuoguang.util.vo.PageSizeReqVo;
public
class
ListCompanyReqVo
extends
PageSizeReqVo
{
private
String
reqId
;
@ApiModelProperty
(
notes
=
"公司名称"
)
private
String
companyName
;
@ApiModelProperty
(
notes
=
"公司类型"
)
private
String
companyType
;
private
String
companyAttribute
;
@ApiModelProperty
(
notes
=
"公司属性: 0:其他;1:景区;2:酒店;3:餐饮;4:特产;5:运营车,6.团队)"
)
private
Integer
companyAttribute
;
@ApiModelProperty
(
notes
=
"审核状态"
)
private
String
examineStatus
;
@ApiModelProperty
(
notes
=
"公司编号"
)
private
String
companyId
;
public
String
getCompanyId
()
{
return
companyId
;
@ApiModelProperty
(
notes
=
"联系人"
)
private
String
contactName
;
@ApiModelProperty
(
notes
=
"联系人电话"
)
private
String
contactPhone
;
@ApiModelProperty
(
notes
=
"公司状态"
)
private
Integer
status
;
@ApiModelProperty
(
notes
=
"开始时间"
)
private
String
startDate
;
@ApiModelProperty
(
notes
=
"结束时间"
)
private
String
endDate
;
public
String
getReqId
()
{
return
reqId
;
}
public
void
set
CompanyId
(
String
company
Id
)
{
this
.
companyId
=
company
Id
;
public
void
set
ReqId
(
String
req
Id
)
{
this
.
reqId
=
req
Id
;
}
public
String
getCompanyName
()
{
...
...
@@ -43,11 +56,11 @@ public class ListCompanyReqVo extends PageSizeReqVo {
this
.
companyType
=
companyType
;
}
public
String
getCompanyAttribute
()
{
public
Integer
getCompanyAttribute
()
{
return
companyAttribute
;
}
public
void
setCompanyAttribute
(
String
companyAttribute
)
{
public
void
setCompanyAttribute
(
Integer
companyAttribute
)
{
this
.
companyAttribute
=
companyAttribute
;
}
...
...
@@ -59,11 +72,51 @@ public class ListCompanyReqVo extends PageSizeReqVo {
this
.
examineStatus
=
examineStatus
;
}
public
String
get
Req
Id
()
{
return
req
Id
;
public
String
get
Company
Id
()
{
return
company
Id
;
}
public
void
setReqId
(
String
reqId
)
{
this
.
reqId
=
reqId
;
public
void
setCompanyId
(
String
companyId
)
{
this
.
companyId
=
companyId
;
}
public
String
getContactName
()
{
return
contactName
;
}
public
void
setContactName
(
String
contactName
)
{
this
.
contactName
=
contactName
;
}
public
String
getContactPhone
()
{
return
contactPhone
;
}
public
void
setContactPhone
(
String
contactPhone
)
{
this
.
contactPhone
=
contactPhone
;
}
public
Integer
getStatus
()
{
return
status
;
}
public
void
setStatus
(
Integer
status
)
{
this
.
status
=
status
;
}
public
String
getStartDate
()
{
return
startDate
;
}
public
void
setStartDate
(
String
startDate
)
{
this
.
startDate
=
startDate
;
}
public
String
getEndDate
()
{
return
endDate
;
}
public
void
setEndDate
(
String
endDate
)
{
this
.
endDate
=
endDate
;
}
}
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