Commit 81dcfa2f by 陶光胜

门店品牌变更

parent c8fe2b62
......@@ -552,4 +552,7 @@ public interface StoreApiService {
* @throws
*/
ServiceResponse<Boolean> hasUnCompleteStatusStore(Integer enterpriseId);
ServiceResponse<Void> testReceiveMessage(String params);
}
......@@ -450,6 +450,12 @@ public class StoreApiServiceImpl implements StoreApiService {
}
@Override
public ServiceResponse<Void> testReceiveMessage(String params) {
System.out.println("params = " + params);
System.out.println("System.currentTimeMillis() = " + System.currentTimeMillis());
}
@Override
public ServiceResponse<Integer> countByOverflowStatus(Integer enterpriseId) {
this.storeService.countByOverflowStatus(enterpriseId, 0);
return EnterpriseServiceResponse.success(this.storeService.countByOverflowStatus(enterpriseId, 0));
......
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