作者 雷海东
... ... @@ -121,7 +121,7 @@ public class TblComplianceReviewController extends BaseController {
// 合同名称
variables.put("contractName",bo.getContractName());
// 合同类型
variables.put("contractType",Long.valueOf(bo.getContractType()));
variables.put("contractType",bo.getContractType());
// 生效日期
variables.put("effectiveDate", bo.getEffectiveDate());
// 到期日期
... ...
... ... @@ -42,7 +42,7 @@ public class TblOrginfoCertificateController extends BaseController {
/**
* 查询单位证照表列表
*/
@SaCheckPermission("compliancemanagement:orginfoCertificate:list")
// @SaCheckPermission("compliancemanagement:orginfoCertificate:list")
@GetMapping("/list")
public TableDataInfo<TblOrginfoCertificateVo> list(TblOrginfoCertificateBo bo, PageQuery pageQuery) {
return iTblOrginfoCertificateService.queryPageList(bo, pageQuery);
... ... @@ -51,7 +51,7 @@ public class TblOrginfoCertificateController extends BaseController {
/**
* 导出单位证照表列表
*/
@SaCheckPermission("compliancemanagement:orginfoCertificate:export")
// @SaCheckPermission("compliancemanagement:orginfoCertificate:export")
@Log(title = "单位证照表", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(TblOrginfoCertificateBo bo, HttpServletResponse response) {
... ... @@ -64,7 +64,7 @@ public class TblOrginfoCertificateController extends BaseController {
*
* @param id 主键
*/
@SaCheckPermission("compliancemanagement:orginfoCertificate:query")
// @SaCheckPermission("compliancemanagement:orginfoCertificate:query")
@GetMapping("/{id}")
public R<TblOrginfoCertificateVo> getInfo(@NotNull(message = "主键不能为空")
@PathVariable Long id) {
... ... @@ -74,7 +74,7 @@ public class TblOrginfoCertificateController extends BaseController {
/**
* 新增单位证照表
*/
@SaCheckPermission("compliancemanagement:orginfoCertificate:add")
// @SaCheckPermission("compliancemanagement:orginfoCertificate:add")
@Log(title = "单位证照表", businessType = BusinessType.INSERT)
@RepeatSubmit()
@PostMapping()
... ... @@ -85,7 +85,7 @@ public class TblOrginfoCertificateController extends BaseController {
/**
* 修改单位证照表
*/
@SaCheckPermission("compliancemanagement:orginfoCertificate:edit")
// @SaCheckPermission("compliancemanagement:orginfoCertificate:edit")
@Log(title = "单位证照表", businessType = BusinessType.UPDATE)
@RepeatSubmit()
@PutMapping()
... ... @@ -107,7 +107,7 @@ public class TblOrginfoCertificateController extends BaseController {
*
* @param ids 主键串
*/
@SaCheckPermission("compliancemanagement:orginfoCertificate:remove")
// @SaCheckPermission("compliancemanagement:orginfoCertificate:remove")
@Log(title = "单位证照表", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public R<Void> remove(@NotEmpty(message = "主键不能为空")
... ...