| @@ -20,6 +20,7 @@ import org.springframework.web.bind.annotation.*; | |||||
| import java.util.ArrayList; | import java.util.ArrayList; | ||||
| import java.util.Date; | import java.util.Date; | ||||
| import java.util.HashMap; | |||||
| import java.util.Map; | import java.util.Map; | ||||
| @RestController | @RestController | ||||
| @@ -130,7 +131,11 @@ public class WxCUserBasicSignController extends BaseController { | |||||
| try { | try { | ||||
| memberId = getMemberId(); | memberId = getMemberId(); | ||||
| } catch (MallinkException me) { | } catch (MallinkException me) { | ||||
| return new ResultData(ErrorCode.getByCode(me.getErrorCode())); | |||||
| Map<String,Integer> map = new HashMap<>(); | |||||
| map.put("continueSign",0); | |||||
| map.put("signInDay",0); | |||||
| return new ResultData(map); | |||||
| // return new ResultData(ErrorCode.getByCode(me.getErrorCode())); | |||||
| } catch(Exception e){ | } catch(Exception e){ | ||||
| return new ResultData(ErrorCode.SYS_SERVER_ERROR); | return new ResultData(ErrorCode.SYS_SERVER_ERROR); | ||||
| } | } | ||||