| | |
| | | return startupDto; |
| | | } |
| | | |
| | | public Integer queryDevpWorkingCount() { |
| | | List<WrkMast> wrkMastsIn = wrkMastService.selectList(new EntityWrapper<WrkMast>() |
| | | .in("wrk_sts", 2, 3, 4, 5)); |
| | | |
| | | List<WrkMast> wrkMastsOut = wrkMastService.selectList(new EntityWrapper<WrkMast>() |
| | | .in("wrk_sts", 12, 14, 15)); |
| | | |
| | | int count = 0; |
| | | count += wrkMastsIn.size(); |
| | | count += wrkMastsOut.size(); |
| | | return count; |
| | | } |
| | | |
| | | public static void main(String[] args) { |
| | | System.out.println(Arith.remainder(1, 4)); |
| | | System.out.println("0200201".substring(0, 2)); |