zoukankan      html  css  js  c++  java
  • 查询接口

    namespace JngsWeb.BLL.Interface
    {
    public class get_complain_list : JsonBase
    {
    public JngsDal tdal = null;
    public get_complain_list(JsonData dta)
    : base(dta)
    { tdal = new JngsDal(); }

    public override object GetData()
    {
    string uid = "";
    try { uid = (string)optdatas["userid"]; }
    catch { uid = ""; }

    string page = "";
    try { page = (string)optdatas["page"]; }
    catch { page = ""; }

    string sta = "";
    try { sta = (string)optdatas["sta"]; }
    catch { sta = ""; }

    string startime = "";
    try { startime = (string)optdatas["startime"]; }
    catch { startime = ""; }

    string endtime = "";
    try { endtime = (string)optdatas["endtime"]; }
    catch { endtime = ""; }

    string info = "";
    try { info = (string)optdatas["info"]; }
    catch { info = ""; }

    DataTable dt = new DataTable();
    JsonData js = new JsonData();

    try
    {
    dt = tdal.get_complain_list(uid, page,sta,startime,endtime,info);
    js = DataTableToJson(dt);
    }
    catch (Exception ex)
    {
    JngsDal.RecordError("get_complain_list", ex.Message);
    }
    return js;
    }

    }
    }

  • 相关阅读:
    搜狗输入法招聘数据挖掘、自然语言处理实习生
    python 备忘
    从零开始
    [转]随笔
    重学python
    关于tensorflow conv2d卷积备忘的一点理解
    python args kwargs 传递参数的区别
    something backup
    R语言命令汇总
    newwork setup
  • 原文地址:https://www.cnblogs.com/guo970910/p/9820625.html
Copyright © 2011-2022 走看看