摘要: CREATE TABLE `g_sys_dict` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', `pid` int(11) DEFAULT '0' COMMENT ' 父ID ', `data_type` varchar(50) NOT NULL COMMENT ' 数据类别,首字母大写 ', `data_code` ... 阅读全文
posted @ 2018-11-06 13:15 Kero小柯 阅读(18457) 评论(0) 推荐(1) 编辑
摘要: * 集合操作常用方法类. * * * @author 柯 */ public class ListUtil { /** * 判断List不为空,非空返回true,空则返回false * * @param list * @return boolean */ public static boolean isNotNull... 阅读全文
posted @ 2018-11-06 13:09 Kero小柯 阅读(2460) 评论(0) 推荐(0) 编辑
摘要: public class RandomUtil { private static final Logger log= LoggerFactory.getLogger(RandomUtil.class); public static int getRandomValue(int min,int max){ Random random=new Random(); ... 阅读全文
posted @ 2018-11-06 13:06 Kero小柯 阅读(194) 评论(0) 推荐(0) 编辑