记得上下班打卡 | git大法好,push需谨慎

Commit 3f7cbb9c authored by 张国柄's avatar 张国柄

~

parent f1762b54
...@@ -3,7 +3,7 @@ package com.liquidnet.service.goblin.service.manage; ...@@ -3,7 +3,7 @@ package com.liquidnet.service.goblin.service.manage;
import com.liquidnet.service.goblin.dto.manage.GoblinStoreMgtCertificationParam; import com.liquidnet.service.goblin.dto.manage.GoblinStoreMgtCertificationParam;
import com.liquidnet.service.goblin.dto.manage.GoblinStoreMgtCompleteParam; import com.liquidnet.service.goblin.dto.manage.GoblinStoreMgtCompleteParam;
public interface GoblinStoreMgtCertificationService { public interface IGoblinStoreMgtCertificationService {
/** /**
* 店铺认证:认证资料保存 * 店铺认证:认证资料保存
* *
......
package com.liquidnet.service.goblin.service.manage;
public interface IGoblinstoreMgtGoodsService {
}
...@@ -7,7 +7,7 @@ import com.liquidnet.service.base.ResponseDto; ...@@ -7,7 +7,7 @@ import com.liquidnet.service.base.ResponseDto;
import com.liquidnet.service.goblin.dto.manage.GoblinStoreMgtCertificationParam; import com.liquidnet.service.goblin.dto.manage.GoblinStoreMgtCertificationParam;
import com.liquidnet.service.goblin.dto.manage.GoblinStoreMgtCompleteParam; import com.liquidnet.service.goblin.dto.manage.GoblinStoreMgtCompleteParam;
import com.liquidnet.service.goblin.dto.manage.vo.GoblinStoreCertificationVo; import com.liquidnet.service.goblin.dto.manage.vo.GoblinStoreCertificationVo;
import com.liquidnet.service.goblin.service.manage.GoblinStoreMgtCertificationService; import com.liquidnet.service.goblin.service.manage.IGoblinStoreMgtCertificationService;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
...@@ -29,7 +29,7 @@ import javax.validation.Valid; ...@@ -29,7 +29,7 @@ import javax.validation.Valid;
@RequestMapping("store/mgt/cert") @RequestMapping("store/mgt/cert")
public class GoblinStoreMgtCertificationController { public class GoblinStoreMgtCertificationController {
@Autowired @Autowired
GoblinStoreMgtCertificationService goblinStoreMgtCertificationService; IGoblinStoreMgtCertificationService IGoblinStoreMgtCertificationService;
@ApiOperationSupport(order = 2) @ApiOperationSupport(order = 2)
@ApiOperation(value = "认证状态", notes = "查取默认店铺认证状态,响应说明[data:1-店铺审核中|2-审核不通过|3-审核通过]") @ApiOperation(value = "认证状态", notes = "查取默认店铺认证状态,响应说明[data:1-店铺审核中|2-审核不通过|3-审核通过]")
...@@ -55,7 +55,7 @@ public class GoblinStoreMgtCertificationController { ...@@ -55,7 +55,7 @@ public class GoblinStoreMgtCertificationController {
log.debug("店铺认证[GoblinStoreMgtCertificationParam:{}]", JsonUtils.toJson(certificationParam)); log.debug("店铺认证[GoblinStoreMgtCertificationParam:{}]", JsonUtils.toJson(certificationParam));
} }
goblinStoreMgtCertificationService.certificationInformationProcessing(certificationParam); IGoblinStoreMgtCertificationService.certificationInformationProcessing(certificationParam);
return ResponseDto.success(); return ResponseDto.success();
} }
...@@ -67,7 +67,7 @@ public class GoblinStoreMgtCertificationController { ...@@ -67,7 +67,7 @@ public class GoblinStoreMgtCertificationController {
log.debug("店铺认证[GoblinStoreMgtCompleteParam:{}]", JsonUtils.toJson(completeParam)); log.debug("店铺认证[GoblinStoreMgtCompleteParam:{}]", JsonUtils.toJson(completeParam));
} }
goblinStoreMgtCertificationService.certificationCompleteProcessing(completeParam); IGoblinStoreMgtCertificationService.certificationCompleteProcessing(completeParam);
return ResponseDto.success(); return ResponseDto.success();
} }
} }
package com.liquidnet.service.goblin.controller.manage;
import com.github.xiaoymin.knife4j.annotations.ApiSupport;
import com.liquidnet.service.goblin.service.manage.IGoblinstoreMgtGoodsService;
import io.swagger.annotations.Api;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@ApiSupport(order = 140101)
@Api(tags = "商品管理")
@Slf4j
@Validated
@RestController
@RequestMapping("store/mgt/goods")
public class GoblinStoreMgtGoodsController {
@Autowired
IGoblinstoreMgtGoodsService goblinstoreMgtGoodsService;
}
...@@ -2,13 +2,13 @@ package com.liquidnet.service.goblin.service.impl.manage; ...@@ -2,13 +2,13 @@ package com.liquidnet.service.goblin.service.impl.manage;
import com.liquidnet.service.goblin.dto.manage.GoblinStoreMgtCertificationParam; import com.liquidnet.service.goblin.dto.manage.GoblinStoreMgtCertificationParam;
import com.liquidnet.service.goblin.dto.manage.GoblinStoreMgtCompleteParam; import com.liquidnet.service.goblin.dto.manage.GoblinStoreMgtCompleteParam;
import com.liquidnet.service.goblin.service.manage.GoblinStoreMgtCertificationService; import com.liquidnet.service.goblin.service.manage.IGoblinStoreMgtCertificationService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.mongodb.core.MongoTemplate; import org.springframework.data.mongodb.core.MongoTemplate;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
@Service @Service
public class GoblinStoreMgtCertificationServiceImpl implements GoblinStoreMgtCertificationService { public class GoblinStoreMgtCertificationServiceImpl implements IGoblinStoreMgtCertificationService {
@Autowired @Autowired
private MongoTemplate mongoTemplate; private MongoTemplate mongoTemplate;
......
package com.liquidnet.service.goblin.service.impl.manage;
import com.liquidnet.service.goblin.service.manage.IGoblinstoreMgtGoodsService;
import org.springframework.stereotype.Service;
@Service
public class GoblinStoreMgtGoodsServiceImpl implements IGoblinstoreMgtGoodsService {
}
package com.liquidnet.service.goblin.service.impl.manage; package com.liquidnet.service.goblin.service.impl.manage;
import com.liquidnet.service.goblin.service.manage.GoblinStoreMgtService; import com.liquidnet.service.goblin.service.manage.IGoblinStoreMgtService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
@Service @Service
public class GoblinStoreMgtServiceImpl implements GoblinStoreMgtService { public class GoblinStoreMgtServiceImpl implements IGoblinStoreMgtService {
} }
package com.liquidnet.service.goblin.service.manage; package com.liquidnet.service.goblin.service.impl.manage;
import com.liquidnet.service.base.ResponseDto; import com.liquidnet.service.base.ResponseDto;
import com.liquidnet.service.goblin.dto.manage.GoblinStorePurchaseItemParam; import com.liquidnet.service.goblin.dto.manage.GoblinStorePurchaseItemParam;
import com.liquidnet.service.goblin.dto.vo.GoblinPurchasingVo; import com.liquidnet.service.goblin.dto.vo.GoblinPurchasingVo;
import com.liquidnet.service.goblin.service.manage.IGoblinStorePurchasingService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import java.util.List; import java.util.List;
......
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