32 lines
737 B
C#
32 lines
737 B
C#
using BLL;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Net.Http;
|
|
using System.Web.Http;
|
|
|
|
namespace WebAPI.Controllers.HJGL
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class PackagingManageController : ApiController
|
|
{
|
|
public Model.ResponeData getPackagingManagebyId(string PackagingManageId)
|
|
{
|
|
var responeData = new Model.ResponeData();
|
|
try
|
|
{
|
|
responeData.data = from x in Funs.DB;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
responeData.code = 0;
|
|
responeData.message = ex.Message;
|
|
}
|
|
|
|
return responeData;
|
|
}
|
|
}
|
|
} |