| | |
| | | import java.math.BigDecimal; |
| | | import java.net.URLDecoder; |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.ArrayList; |
| | | import java.util.Arrays; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | |
| | | public static final String WORK_START = "WORK_START"; |
| | | public static final String WORK_END = "WORK_END"; |
| | | public static final String INTERVAL = "INTERVAL"; |
| | | public static final String USE_CAR_TAKE_CARE = "USE_CAR_TAKE_CARE"; |
| | | |
| | | |
| | | |
| | | |
| | |
| | | return s.substring(0,5)+"*******"+s.substring(l-6,l); |
| | | } |
| | | |
| | | /** |
| | | * 切分逗号拼接的整形集合 |
| | | * @param memberIds |
| | | * @return |
| | | */ |
| | | |
| | | public static List<Integer> getIntegerListByStrs(String memberIds) { |
| | | List<Integer> idsList = null; |
| | | try { |
| | | String[] strs = memberIds.split(","); |
| | | for(String id :strs){ |
| | | if(idsList == null){ |
| | | idsList = new ArrayList<>(); |
| | | } |
| | | idsList.add(Integer.parseInt(id)); |
| | | } |
| | | }catch (Exception e){ |
| | | |
| | | } |
| | | |
| | | return idsList; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * mq tag |