(Class<?> clazz)
| 21 | |
| 22 | // 只对 com.zc.wms 包下的控制器应用前缀 |
| 23 | private boolean isWmsController(Class<?> clazz) { |
| 24 | // 仅当类位于 com.yi.xm 包下时,才添加路径前缀 |
| 25 | return clazz.getPackage().getName().startsWith("com.yi.xm"); |
| 26 | } |
| 27 | |
| 28 | } |
nothing calls this directly
no outgoing calls
no test coverage detected