Commit 69c85709 by zhiwj

Merge branch 'developer' of http://115.159.76.241/base_platform_enterprise/gic-store into developer

parents ff6d776f 6f4919fb
......@@ -90,7 +90,7 @@ public interface StoreOpenApiService {
ServiceResponse<Void> addClerk(Integer enterpriseId, ClerkDTO clerkInfo);
ServiceResponse<Void> editClerk(Integer enterpriseId, ClerkDTO clerkInfo, TestDTO test);
ServiceResponse<Void> editClerk(Integer enterpriseId, ClerkDTO clerkInfo);
/**
* 分页查询导购列表
......
......@@ -248,8 +248,8 @@ public class StoreOpenApiServiceImpl implements StoreOpenApiService {
}
@Override
@GatewayParams(query = {"enterpriseId"}, body = {"clerkInfo", "test"})
public ServiceResponse<Void> editClerk(Integer enterpriseId, ClerkDTO clerkInfo, TestDTO test) {
@GatewayParams(query = {"enterpriseId"}, body = {"clerkInfo"})
public ServiceResponse<Void> editClerk(Integer enterpriseId, ClerkDTO clerkInfo) {
//参数校验
ServiceResponse<EnterpriseDTO> enterpriseResult = enterpriseApiService.getEnterpriseById(enterpriseId);
if (!enterpriseResult.isSuccess()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment