ソースを参照

新增货品档案筛选栏位选择接口

沈静伟 3 年 前
コミット
7056281ff2

+ 6 - 1
src/rest/openapi/restcontroller/wechatapp/titem/Titem.java

@@ -1333,5 +1333,10 @@ public class Titem extends Controller {
         return getReturnObject_suc(rows, true).toString();
         return getReturnObject_suc(rows, true).toString();
     }
     }
 
 
-
+    public String query_itemvalueclass() {
+        String type = content.getString("type");
+        DBConnect dbConnect = new DBConnect();
+        Rows rows = dbConnect.runSqlQuery("select value from ps_databind_list where databindid='ITEM_" + type + "' and siteid='" + siteid + "'");
+        return getReturnObject_suc(rows, true).toString();
+    }
 }
 }