1
huangxiaoqiang
昨天 af5847927931d3f491d7be5e0178cff3c37ac6f9
1
2
3
4
5
6
7
8
9
10
11
12
using WIDESEA_Core.BaseRepository;
using WIDESEA_IOrderRepository;
using WIDESEA_Model.Models.Order;
 
namespace WIDESEA_OrderRepository;
 
public class Dt_AllocateOutboundOrderDetailRepository : RepositoryBase<Dt_AllocateOutboundOrderDetail>, IDt_AllocateOutboundOrderDetailRepository
{
    public Dt_AllocateOutboundOrderDetailRepository(IUnitOfWorkManage unitOfWorkManage) : base(unitOfWorkManage)
    {
    }
}