chenhaozhe
2025-06-16 7f0779d2620af812addb71f9a2685c6e7635e73d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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
    }
}