|
@ -0,0 +1,30 @@
|
|
|
|
package com.yihu.jw.base.endpoint.a4endpoint;
|
|
|
|
|
|
|
|
import com.yihu.jw.restmodel.web.Envelop;
|
|
|
|
import com.yihu.jw.restmodel.web.endpoint.EnvelopRestEndpoint;
|
|
|
|
import com.yihu.jw.rm.base.BaseRequestMapping;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
@RestController
|
|
|
|
@RequestMapping(value = "/Funds")
|
|
|
|
@Api(value = "资金管理", description = "资金管理", tags = {"资金管理--对账单"})
|
|
|
|
public class FundsManagementEndpoint extends EnvelopRestEndpoint {
|
|
|
|
@ApiOperation(value = "对账单")
|
|
|
|
@GetMapping("/reconciliation")
|
|
|
|
public Envelop reconciliation(@ApiParam(name="belongCommunity",value = "社区编码",required = false)
|
|
|
|
@RequestParam(value = "belongCommunity" ,required = false)String belongCommunity,
|
|
|
|
@ApiParam(name = "equNum" ,value = "设备编码" ,required = false)
|
|
|
|
@RequestParam(value = "equNum",required = false)String equNum,
|
|
|
|
@ApiParam(name = "startTime" ,value = "开始时间",required = false)
|
|
|
|
@RequestParam(value = "startTime" ,required = false)Date startTime){
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|