• 查询接口


    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;
    }

    }
    }

  • 相关阅读:
    sap function 常用的一些系统函数
    sap ok code
    提高PHP代码质量36计
    sap links /sap 学习资源链接
    sap tips/ sap 小技巧
    php写导入,导出 mysql csv
    SAP Tables 表
    [C#] 处理 Json
    [Rootkit] 无痕 hook 硬件断点
    [Rootkit] dll 隐藏 VAD
  • 原文地址:https://www.cnblogs.com/guo970910/p/9820625.html
Copyright © 2020-2023  润新知