| | |
| | | package com.vci.web.other; |
| | | |
| | | import com.vci.web.annotation.BdSelectInput; |
| | | import com.vci.model.BdSelectInputCharDO; |
| | | import com.vci.starter.web.annotation.BdSelectInput; |
| | | import com.vci.web.dao.BdSelectInputCharDaoI; |
| | | import com.vci.web.model.BdSelectInputCharDO; |
| | | import com.vci.web.util.WebUtil; |
| | | import org.apache.commons.lang3.StringUtils; |
| | | import org.aspectj.lang.JoinPoint; |
| | | import org.aspectj.lang.annotation.After; |
| | | import org.aspectj.lang.annotation.AfterReturning; |
| | | import org.aspectj.lang.annotation.Aspect; |
| | | import org.aspectj.lang.annotation.Pointcut; |
| | |
| | | import org.springframework.core.DefaultParameterNameDiscoverer; |
| | | import org.springframework.core.ParameterNameDiscoverer; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.lang.reflect.Method; |
| | |
| | | /** |
| | | * 所有的BdSelectInput注解的 |
| | | */ |
| | | @Pointcut("execution(public * com.vci..*.*(..)) && @target(com.vci.web.annotation.BdSelectInput) ") |
| | | @Pointcut("execution(public * com.vci..*.*(..)) && @target(com.vci.starter.web.annotation.BdSelectInput) ") |
| | | public void selectInputChar(){ |
| | | |
| | | } |