Quellcode durchsuchen

Merge branch 'dev' of http://121.42.53.174:3000/jiapeng/portal-web into dev

XMTT vor 7 Jahren
Ursprung
Commit
78b932bd3f
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      src/main/java/com/ekexiu/portal/ware/WareService.java

+ 2 - 2
src/main/java/com/ekexiu/portal/ware/WareService.java

454
	 * @throws SQLException
454
	 * @throws SQLException
455
	 */
455
	 */
456
	@Get
456
	@Get
457
	@Path("/pq/org/seach")
457
	@Path("/pq/org/search")
458
	public PageQueryResult<CountWare> pageQueryOrg(@JdbcConn Connection con, @Nullable String key, String oid, int pageSize, int pageNo) throws SQLException {
458
	public PageQueryResult<CountWare> pageQueryOrg(@JdbcConn Connection con, @Nullable String key, String oid, int pageSize, int pageNo) throws SQLException {
459
		if (key != null) {
459
		if (key != null) {
460
			key = "%" + key + "%";
460
			key = "%" + key + "%";
539
	 * @throws SQLException
539
	 * @throws SQLException
540
	 */
540
	 */
541
	@Get
541
	@Get
542
	@Path("/pg/seach")
542
	@Path("/pg/search")
543
	public PageQueryResult<Ware> pageQuery(@JdbcConn Connection con, @Nullable String key, String pid, int pageSize, int pageNo) throws SQLException {
543
	public PageQueryResult<Ware> pageQuery(@JdbcConn Connection con, @Nullable String key, String pid, int pageSize, int pageNo) throws SQLException {
544
		if (key != null) {
544
		if (key != null) {
545
			key = "%" + key + "%";
545
			key = "%" + key + "%";