标签:style ring 适用于 etc mapper int color pre find
private String getCode() { List<String> ptypeCodeList = mapper.findCodeList(); String code = ""; for(int i=0;i<ptypeCodeList.size();i++) { code = "TY"+i; if(!ptypeCodeList.contains(code)) { return code; } } return "TY"+ptypeCodeList.size(); }
这种方法需要遍历数据库,仅适用于数据库中的数据量较小的情况。
标签:style ring 适用于 etc mapper int color pre find
原文地址:https://www.cnblogs.com/excellencesy/p/10069500.html