huangxiaoqiang
2025-04-08 d74a846d50a24d7cc8447cac6e2aeef670646097
CodeManagement/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/MOMErrorMessageController.cs
@@ -1,4 +1,5 @@
using WIDESEA_IStoragIntegrationServices.MOM.Error;
using WIDESEA_DTO;
using WIDESEA_IStoragIntegrationServices.MOM.Error;
using WIDESEA_Model.Models;
namespace WIDESEA_WMSServer.Controllers;
@@ -10,4 +11,12 @@
    public MOMErrorMessageController(IMOMErrorMessageService service) : base(service)
    {
    }
    [HttpPost, AllowAnonymous, Route("x")]
    public WebResponseContent x()
    {
        var x= SqlSugarHelper.DbWCS.Updateable<dt_needBarcode>()
                    .SetColumns(x => x.inLineNum == x.inLineNum + 1)
                    .Where(x => x.id == 10).ExecuteCommandHasChange();
        return  WebResponseContent.Instance.OK(data:x);
    }
}