25 lines
704 B
C#
Raw Normal View History

2025-10-28 19:18:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MyCode.Project.Infrastructure;
using MyCode.Project.Domain;
using MyCode.Project.Domain.Model;
using MyCode.Project.Infrastructure.Common;
using MyCode.Project.Domain.Message;
2025-11-06 18:12:17 +08:00
using MyCode.Project.Domain.Message.Response.JackYun;
2025-10-28 19:18:39 +08:00
namespace MyCode.Project.Domain.Repositories
{
public interface IBusiOrderGoodsDocInRepository : IRepository<BusiOrderGoodsDocIn>
{
2025-11-06 18:12:17 +08:00
/// <summary>
/// 获取合并后的吉客云采购入库单订单
/// </summary>
/// <returns></returns>
List<BusiOrderGoodsDocInSummary> GetPushGoodsDocInOrder();
}
2025-10-28 19:18:39 +08:00
}