shgx_tz_mom/ZR.Service/Business/GendemoService.cs

32 lines
827 B
C#
Raw Normal View History

2021-09-27 08:06:09 +08:00
using Infrastructure;
using Infrastructure.Attribute;
using Infrastructure.Extensions;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using ZR.Common;
using ZR.Model.Models;
using ZR.Repository;
namespace ZR.Service.Business
{
/// <summary>
/// 代码生成演示Service业务层处理
///
/// @author zr
/// @date 2021-09-27
2021-09-27 08:06:09 +08:00
/// </summary>
[AppService(ServiceType = typeof(IGendemoService), ServiceLifetime = LifeTime.Transient)]
public class GendemoService: BaseService<Gendemo>, IGendemoService
2021-09-27 08:06:09 +08:00
{
private readonly GendemoRepository _repository;
public GendemoService(GendemoRepository repository)
{
_repository = repository;
}
2021-09-27 08:06:09 +08:00
#region
#endregion
}
}