|
|
|
@ -6,12 +6,10 @@ import com.zdxt.code.domain.Xzqzjbxx173774; |
|
|
|
import com.zdxt.code.service.IXzjcjbxx025711Service; |
|
|
|
import com.zdxt.common.ZDResponse; |
|
|
|
import com.zdxt.common.controller.BaseController; |
|
|
|
import com.zdxt.common.util.TableDataInfo; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.stereotype.Controller; |
|
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
|
import org.springframework.web.bind.annotation.PathVariable; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
import org.springframework.web.bind.annotation.ResponseBody; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
@ -34,35 +32,35 @@ public class AppXzjcjbxx025711Controller extends BaseController |
|
|
|
/** |
|
|
|
* 查询【历史检查信息】列表 |
|
|
|
*/ |
|
|
|
@GetMapping("/queryList/{enterpriseNumber}") |
|
|
|
@PostMapping("/queryList") |
|
|
|
@ResponseBody |
|
|
|
public ZDResponse queryList(@PathVariable("enterpriseNumber") String enterpriseNumber) |
|
|
|
public TableDataInfo queryList(Xzjcjbxx025711 xzjcjboxx) |
|
|
|
{ |
|
|
|
startPage(); |
|
|
|
List<Xzjcjbxx025711> list = xzjcjbxx025711Service.queryByEnterpriseNumber(enterpriseNumber); |
|
|
|
return ZDResponse.success("查询企业历史检查信息",list); |
|
|
|
List<Xzjcjbxx025711> list = xzjcjbxx025711Service.queryByEnterpriseNumber(xzjcjboxx); |
|
|
|
return getDataTable(list); |
|
|
|
} |
|
|
|
/** |
|
|
|
* 查询【历史强制案件】列表 |
|
|
|
*/ |
|
|
|
@GetMapping("/queryQZAJList/{enterpriseNumber}") |
|
|
|
@PostMapping("/queryQZAJList") |
|
|
|
@ResponseBody |
|
|
|
public ZDResponse queryQZAJList( @PathVariable("enterpriseNumber") String enterpriseNumber) |
|
|
|
public TableDataInfo queryQZAJList(Xzjcjbxx025711 xzjcjboxx) |
|
|
|
{ |
|
|
|
startPage(); |
|
|
|
List<Xzqzjbxx173774> qzajList = xzjcjbxx025711Service.queryQZAJByEnterpriseNumber(enterpriseNumber); |
|
|
|
return ZDResponse.success("查询企业历史强制案件信息",qzajList); |
|
|
|
List<Xzqzjbxx173774> qzajList = xzjcjbxx025711Service.queryQZAJByEnterpriseNumber(xzjcjboxx); |
|
|
|
return getDataTable(qzajList); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 查询【历史处罚案件】列表 |
|
|
|
*/ |
|
|
|
@GetMapping("/queryCFAJList/{enterpriseNumber}") |
|
|
|
@PostMapping("/queryCFAJList") |
|
|
|
@ResponseBody |
|
|
|
public ZDResponse queryCFAJList( @PathVariable("enterpriseNumber") String enterpriseNumber) |
|
|
|
public TableDataInfo queryCFAJList(Xzjcjbxx025711 xzjcjboxx) |
|
|
|
{ |
|
|
|
startPage(); |
|
|
|
List<Xzcfajjbxx026705> xzcfajjbxx026705s = xzjcjbxx025711Service.queryCFAJByEnterpriseNumber(enterpriseNumber); |
|
|
|
return ZDResponse.success("查询企业历史处罚案件信息",xzcfajjbxx026705s); |
|
|
|
List<Xzcfajjbxx026705> xzcfajjbxx026705s = xzjcjbxx025711Service.queryCFAJByEnterpriseNumber(xzjcjboxx); |
|
|
|
return getDataTable(xzcfajjbxx026705s); |
|
|
|
} |
|
|
|
} |
|
|
|
|