Commit 6ecc713c3dfb6c6c4c8f45e14af0f020e0bf2f51

Authored by yeqianyong
1 parent 2125cf2e

楚江ERP-去除客户池权限控制

... ... @@ -34,9 +34,6 @@ public interface CustomerMapper extends BaseMapper<Customer> {
34 34 @Sort(value = "createTime", autoParse = true),
35 35 @Sort(value = "updateTime", autoParse = true),
36 36 })
37   - @DataPermissions(type = OrderDataPermissionDataPermissionType.class, value = {
38   - @DataPermission(template = "order", alias = "c")
39   - })
40 37 List<Customer> query(@Param("vo") QueryCustomerVo vo);
41 38
42 39 /**
... ...
... ... @@ -53,7 +53,7 @@
53 53 create_time,
54 54 update_by,
55 55 update_time
56   - FROM base_data_customer c
  56 + FROM base_data_customer
57 57 </sql>
58 58
59 59 <select id="query" resultMap="CustomerDto">
... ...