|
|
|
|
16
|
import org.jfw.apt.web.annotation.operate.Get;
|
16
|
import org.jfw.apt.web.annotation.operate.Get;
|
17
|
import org.jfw.apt.web.annotation.operate.Post;
|
17
|
import org.jfw.apt.web.annotation.operate.Post;
|
18
|
import org.jfw.apt.web.annotation.param.JdbcConn;
|
18
|
import org.jfw.apt.web.annotation.param.JdbcConn;
|
|
|
19
|
import org.jfw.apt.web.annotation.param.PathVar;
|
19
|
import org.jfw.util.StringUtil;
|
20
|
import org.jfw.util.StringUtil;
|
20
|
import org.jfw.util.codec.Base64;
|
21
|
import org.jfw.util.codec.Base64;
|
21
|
import org.jfw.util.io.IoUtil;
|
22
|
import org.jfw.util.io.IoUtil;
|
|
|
|
|
125
|
}
|
126
|
}
|
126
|
@Get
|
127
|
@Get
|
127
|
@Path("/byApply/{id}")
|
128
|
@Path("/byApply/{id}")
|
128
|
public List<AuthImage> query(@JdbcConn Connection con,String id)throws SQLException{
|
|
|
|
|
129
|
public List<AuthImage> query(@JdbcConn Connection con, @PathVar String id)throws SQLException{
|
129
|
return this.authImageDao.query(con,id);
|
130
|
return this.authImageDao.query(con,id);
|
130
|
}
|
131
|
}
|
131
|
}
|
132
|
}
|