联系人和税码去掉权限
This commit is contained in:
@@ -33,7 +33,7 @@ import static com.zt.plat.framework.common.pojo.CommonResult.success;
|
||||
@RestController
|
||||
@RequestMapping("/base/contact")
|
||||
@Validated
|
||||
public class ContactController implements BusinessControllerMarker {
|
||||
public class ContactController {
|
||||
|
||||
|
||||
@Resource
|
||||
|
||||
@@ -34,7 +34,7 @@ import static com.zt.plat.framework.common.pojo.CommonResult.success;
|
||||
@RestController
|
||||
@RequestMapping("/base/tax")
|
||||
@Validated
|
||||
public class TaxController implements BusinessControllerMarker {
|
||||
public class TaxController {
|
||||
|
||||
|
||||
@Resource
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package com.zt.plat.module.base.dal.dataobject.base;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import com.zt.plat.framework.mybatis.core.dataobject.BaseDO;
|
||||
import com.zt.plat.framework.mybatis.core.dataobject.BusinessBaseDO;
|
||||
import lombok.*;
|
||||
/**
|
||||
@@ -19,7 +20,7 @@ import lombok.*;
|
||||
/**
|
||||
* 支持业务基类继承:isBusiness=true 时继承 BusinessBaseDO,否则继承 BaseDO
|
||||
*/
|
||||
public class ContactDO extends BusinessBaseDO {
|
||||
public class ContactDO extends BaseDO {
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package com.zt.plat.module.base.dal.dataobject.base;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import com.zt.plat.framework.mybatis.core.dataobject.BaseDO;
|
||||
import com.zt.plat.framework.mybatis.core.dataobject.BusinessBaseDO;
|
||||
import lombok.*;
|
||||
|
||||
@@ -21,7 +22,7 @@ import java.math.BigDecimal;
|
||||
/**
|
||||
* 支持业务基类继承:isBusiness=true 时继承 BusinessBaseDO,否则继承 BaseDO
|
||||
*/
|
||||
public class TaxDO extends BusinessBaseDO {
|
||||
public class TaxDO extends BaseDO {
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user