yunkai 8 vuotta sitten
vanhempi
commit
2981cb3f71

+ 1 - 1
src/main/java/com/ekexiu/console/servlet/AuthCssServlet.java

42
				}
42
				}
43
			}
43
			}
44
			if (!found) {
44
			if (!found) {
45
				sb.append("auth-").append(r.getId()).append(",");
45
				sb.append(".auth-").append(r.getId()).append(",");
46
			}
46
			}
47
		}
47
		}
48

48


+ 2 - 0
src/main/java/com/ekexiu/console/system/service/DictService.java

20
import org.jfw.apt.annotation.Autowrie;
20
import org.jfw.apt.annotation.Autowrie;
21
import org.jfw.apt.annotation.DefaultValue;
21
import org.jfw.apt.annotation.DefaultValue;
22
import org.jfw.apt.annotation.Nullable;
22
import org.jfw.apt.annotation.Nullable;
23
import org.jfw.apt.web.annotation.LoginUser;
23
import org.jfw.apt.web.annotation.Path;
24
import org.jfw.apt.web.annotation.Path;
24
import org.jfw.apt.web.annotation.operate.Get;
25
import org.jfw.apt.web.annotation.operate.Get;
25
import org.jfw.apt.web.annotation.operate.Post;
26
import org.jfw.apt.web.annotation.operate.Post;
37

38

38
import com.ekexiu.console.system.dao.DictDao;
39
import com.ekexiu.console.system.dao.DictDao;
39
import com.ekexiu.console.system.po.Dict;
40
import com.ekexiu.console.system.po.Dict;
41
import com.ekexiu.console.system.vo.ConsoleAuthUser;
40
import com.ekexiu.console.system.vo.DictInfo;
42
import com.ekexiu.console.system.vo.DictInfo;
41
import com.ekexiu.console.system.vo.DictItem;
43
import com.ekexiu.console.system.vo.DictItem;
42
import com.ekexiu.console.system.vo.EditDictItem;
44
import com.ekexiu.console.system.vo.EditDictItem;