Authored by chenchao

define service method

@@ -30,8 +30,6 @@ import org.springframework.stereotype.Service; @@ -30,8 +30,6 @@ import org.springframework.stereotype.Service;
30 30
31 @Service 31 @Service
32 public class AppraiseOrderService { 32 public class AppraiseOrderService {
33 -  
34 -  
35 private final Logger logger = LoggerUtils.getBuyerOrderLogger(); 33 private final Logger logger = LoggerUtils.getBuyerOrderLogger();
36 34
37 @Autowired 35 @Autowired
@@ -157,4 +155,50 @@ public class AppraiseOrderService { @@ -157,4 +155,50 @@ public class AppraiseOrderService {
157 155
158 return null; 156 return null;
159 } 157 }
  158 +
  159 + public boolean isAppraiseOrder(int uid, long orderCode){
  160 +
  161 + return false;
  162 + }
  163 +
  164 + /**
  165 + * 发货
  166 + * @param orderCode
  167 + * @param depotNum
  168 + */
  169 + public void deliver2Depot(long orderCode, int depotNum){
  170 +
  171 + }
  172 +
  173 + /**
  174 + *
  175 + * @param orderCode
  176 + */
  177 + public void platformReceiveGoods(long orderCode){
  178 +
  179 + }
  180 +
  181 + /**
  182 + *
  183 + * @param orderCode
  184 + */
  185 + public void appraisePass(long orderCode){
  186 +
  187 + }
  188 +
  189 + /**
  190 + * 鉴别为假
  191 + * @param orderCode
  192 + */
  193 + public void appraiseFake(long orderCode){
  194 +
  195 + }
  196 +
  197 + /**
  198 + * 无法鉴别
  199 + * @param orderCode
  200 + */
  201 + public void unsure(long orderCode){
  202 +
  203 + }
160 } 204 }