using System;
|
using System.Collections.Generic;
|
using Newtonsoft.Json;
|
using Newtonsoft.Json.Linq;
|
using System.Linq;
|
using System.Net;
|
using System.Net.Http;
|
using System.Web.Http;
|
using WebAPI.Models;
|
|
namespace WebAPI.Controllers.基础资料.基础资料
|
{
|
public class Gy_PNLInfoController : ApiController
|
{
|
|
private json objJsonResult = new json();
|
SQLHelper.ClsCN oCN = new SQLHelper.ClsCN();
|
|
#region 获取PNLInfo列表
|
[Route("Gy_PNLInfoController/GetGy_PNLInfoList")]
|
[HttpGet]
|
public object GetGy_PNLInfoList(string sWhere, string user)
|
{
|
try
|
{
|
return null;
|
}
|
catch (Exception e)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "Exception!" + e.ToString();
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
#endregion
|
|
#region 获取PNLInfo列表 分页
|
#endregion
|
|
#region 添加PNLInfo 添加子表
|
#endregion
|
|
#region 删除PNLInfo 删除子表
|
#endregion
|
|
#region 更新PNLInfo 更新子表
|
#endregion
|
}
|
}
|