20 lines
531 B
C#
20 lines
531 B
C#
using System;
|
|
using Infrastructure.Attribute;
|
|
using ARW.Repository.System;
|
|
using ARW.Model.Models.Business.LogisticsManage.LogisticsCompanys;
|
|
|
|
namespace ARW.Repository.Business.LogisticsManage.LogisticsCompanys
|
|
{
|
|
/// <summary>
|
|
/// 物流公司仓储
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-06-18
|
|
/// </summary>
|
|
[AppService(ServiceLifetime = LifeTime.Transient)]
|
|
public class LogisticsCompanyRepository : BaseRepository<LogisticsCompany>
|
|
{
|
|
#region 业务逻辑代码
|
|
#endregion
|
|
}
|
|
} |