|
|
@@ -39,11 +39,11 @@ public class AuditRecordsController {
|
|
39
|
39
|
@ApiOperation(value="根据bid和btype查询对应报表审批", notes = "获取ById")
|
|
40
|
40
|
@ApiImplicitParams({
|
|
41
|
41
|
@ApiImplicitParam(name = "id", value = "id", paramType = "query"),
|
|
42
|
|
- @ApiImplicitParam(name = "btype", value = "btype", paramType = "query")
|
|
|
42
|
+ @ApiImplicitParam(name = "reportType", value = "reportType", paramType = "query")
|
|
43
|
43
|
//报表类型 0:周报表 、1:月报表
|
|
44
|
44
|
})
|
|
45
|
|
- public AuditRecords getAuditRecordsById(Integer id,Integer btype){
|
|
46
|
|
- return auditRecordsService.findById(id,btype);
|
|
|
45
|
+ public List<AuditRecords> getAuditRecordsById(Integer id,Integer reportType){
|
|
|
46
|
+ return auditRecordsService.findById(id,reportType);
|
|
47
|
47
|
}
|
|
48
|
48
|
|
|
49
|
49
|
|