wanshenmean
19 小时以前 314076388f664f8ce1a1d19c4c9717fe54634e05
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
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_IRecordService;
using WIDESEA_Model.Models;
 
namespace WIDESEA_WMSServer.Controllers.Record
{
    /// <summary>
    /// 货位状态变动记录
    /// </summary>
    [Route("api/LocationStatusChangeRecord")]
    [ApiController]
    public class LocationStatusChangeRecordController : ApiBaseController<ILocationStatusChangeRecordService, Dt_LocationStatusChangeRecord>
    {
        public LocationStatusChangeRecordController(ILocationStatusChangeRecordService service) : base(service)
        {
        }
        /// <summary>
        /// 根据ID获取货位状态变动记录
        /// </summary>
        /// <param name="id">货位状态变动记录ID</param>
        /// <returns>货位状态变动记录信息</returns>
        [HttpPost("GetLocationState"), AllowAnonymous]
        public WebResponseContent GetLocationState(int id)
        {
            try
            {
                if (id <= 0)
                    return WebResponseContent.Instance.Error("ID参数无效");
 
                var records = Service.Repository.QueryData(x => x.LocationId == id);
                if (records == null || records.Count == 0)
                    return WebResponseContent.Instance.Error("未找到对应的货位状态变动记录");
 
                return WebResponseContent.Instance.OK(null, records);
            }
            catch (Exception ex)
            {
                return WebResponseContent.Instance.Error($"获取货位状态变动记录失败: {ex.Message}");
            }
        }
    }
}