Hello World

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Deploy to remote sites

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites
1
$ hexo deploy
hello.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@RequiresPermissions("contracts:payment:list")
@PostMapping("/list/{payType}")
@ResponseBody
public TableDataInfo list(@PathVariable("payType") Integer payType,ConPayment conPayment) {
ConContract conContract=new ConContract();
conContract.setIsneedpay(0);
List<ConContract> conContractList = conContractService.selectConContractList(conContract);
SysUser user = ShiroUtils.getSysUser();
conPayment.setPayapplyuser(user.getUserId());
conPayment.setPayType(payType);
startPage();
List<ConPayment> list = conPaymentService.selectConPaymentList(conPayment);
for(ConPayment conpayment:list){
for(ConContract concontract:conContractList){
if(conpayment.getConid().longValue()==concontract.getConid().longValue()){
conpayment.setConname(concontract.getConname());
conpayment.setPaylimitTrueStr(concontract.getPaylimitTrueStr());
}
}
}
return getDataTable(list);
}

More info: Deployment

作者

Tpraise

发布于

2021-08-19

更新于

2021-08-19

许可协议

CC BY-NC-SA 4.0

评论

Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×