老闆覺得我寫的分頁查詢程式碼不夠簡潔?
阿新 • • 發佈:2021-02-14
分頁查詢
最近老闆又讓我寫了一個功能,這功能最重要的就是分頁列表查詢了。由於我之前寫過這個列表分頁查詢,就是類似下面的
//查詢反饋列表(分頁)
PageHelper.startPage(dto.getPageNum(), dto.getPageSize());
List<NoticeReply> reply = noticeReceiverMapper.selectNoticeList(dto.getNoticeId());
PageInfo<NoticeReply> pageInfo = new PageInfo<>(reply);
resultMap.put("notice", notice);
resultMap.put("reply", pageInfo);
return RespInfo.mobiSuccess(resultMap);
所以我很快啊,就照貓畫虎寫了如下程式碼
@Override
public RespInfo getNotificationPage(NotificationDto dto) {
PageHelper.startPage (dto.getPageNum(), dto.getPageSize()); List<Notification> notification=notificationMapper.selectNotificationList(dto);
PageInfo<Notification> reply=new PageInfo<>(notification);
return RespInfo.mobiSuccess(reply);
友情提醒一下啊,這個是我們公司封裝的一種輸出格式啊,不要亂抄哦
於是我自信的把程式碼提交上去了o( ̄▽ ̄
然後,額,老闆就發了下面的程式碼
@Override
public RespInfo getNotificationPage(NotificationDto dto) {
PageHelper.startPage(dto.getPageNum(), dto.getPageSize());
return RespInfo.mobiSuccess(new PageInfo<>(notificationMapper.selectNotificationList(dto)));
}
老闆:“程式碼要簡潔,格式要規範,小夥子還要努力”( $ _ $ )
我:d=====( ̄▽ ̄*)b
所以在我們在寫程式碼的時候要多注意點程式碼的簡潔性和規範性,當然啊,這個要建立在你會的基礎上啊,如果我弄了半天才好不容易搞出來,還注意你個錘子,咳咳咳~~~(小聲bb,老闆沒聽到吧)
好了,這次的文章到這裡也就結束了,我是sfz,你知道的越多,你不知道的越多