This commit is contained in:
18942506660
2023-10-26 15:32:07 +08:00
parent 30346388ca
commit bf665e81df
8 changed files with 137 additions and 9 deletions

View File

@@ -2,6 +2,8 @@
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Core.Dto;
using WMS.Web.Core.Dto.ChangeBoxRecord;
using WMS.Web.Domain.Entitys;
namespace WMS.Web.Domain.Infrastructure
@@ -10,5 +12,8 @@ namespace WMS.Web.Domain.Infrastructure
{
// 新增
Task<ChangeBoxRecord> Add(ChangeBoxRecord entity, bool isTransaction = true);
// 获取销售列表
Task<PaginationResponseDto<ChangeBoxRecordQueryInfoResponse>> GetListAsync(ChangeBoxRecordQueryRequest dto);
}
}

View File

@@ -12,5 +12,9 @@ namespace WMS.Web.Domain.Values
public static ValueTuple<int, string> Erp_Login_Error = (1001, "Erp登录返回错误");
public static ValueTuple<int, string> Erp_BillQuery_Error = (1002, "Erp单据查询返回错误");
/// <summary>
/// 无效
/// </summary>
public static ValueTuple<int, string> Token_Invalid_Error = (401, "验证Token无效请重新登录");
}
}