20 lines
490 B
C#
20 lines
490 B
C#
using System;
|
|
using Infrastructure.Attribute;
|
|
using ARW.Repository.System;
|
|
using ARW.Model.Models.Business.Custom.Customers;
|
|
|
|
namespace ARW.Repository.Business.Custom.Customers
|
|
{
|
|
/// <summary>
|
|
/// 小程序客户仓储
|
|
///
|
|
/// @author 黎文豪
|
|
/// @date 2023-06-05
|
|
/// </summary>
|
|
[AppService(ServiceLifetime = LifeTime.Transient)]
|
|
public class CustomerRepository : BaseRepository<Customer>
|
|
{
|
|
#region 业务逻辑代码
|
|
#endregion
|
|
}
|
|
} |