20 lines
467 B
C#
20 lines
467 B
C#
using System;
|
|
using Infrastructure.Attribute;
|
|
using ARW.Repository.System;
|
|
using ARW.Model.Models.Business.Regions;
|
|
|
|
namespace ARW.Repository.Business.Regions
|
|
{
|
|
/// <summary>
|
|
/// 省市区数据表仓储
|
|
///
|
|
/// @author admin
|
|
/// @date 2023-06-05
|
|
/// </summary>
|
|
[AppService(ServiceLifetime = LifeTime.Transient)]
|
|
public class RegionRepository : BaseRepository<Region>
|
|
{
|
|
#region 业务逻辑代码
|
|
#endregion
|
|
}
|
|
} |