This commit is contained in:
不做码农 2021-12-05 08:44:20 +08:00
parent c94a94d9d8
commit 77bc846ff1
5 changed files with 0 additions and 35 deletions

View File

@ -9,8 +9,6 @@ using Infrastructure.Enums;
using Infrastructure.Model;
using Mapster;
using ZR.Model.Dto;
using ZR.Model.Models;
using ZR.Service.Business;
using ZR.Admin.WebApi.Extensions;
using ZR.Admin.WebApi.Filters;
using ZR.Common;

View File

@ -1,7 +1,4 @@
using System;
using System.Collections.Generic;
using ZR.Model.Dto;
using ZR.Model.Models;
namespace ZR.Model.Dto
{

View File

@ -1,7 +1,5 @@
using System;
using Infrastructure.Attribute;
using ZR.Repository.System;
using ZR.Model.Models;
using ZR.Model.System;
namespace ZR.Repository

View File

@ -1,27 +0,0 @@
using Infrastructure;
using Infrastructure.Attribute;
using ZR.Model.Models;
using ZR.Repository;
namespace ZR.Service.Business
{
/// <summary>
/// 代码生成演示Service业务层处理
///
/// @author zr
/// @date 2021-12-01
/// </summary>
[AppService(ServiceType = typeof(IGendemoService), ServiceLifetime = LifeTime.Transient)]
public class GendemoService : BaseService<Gendemo>, IGendemoService
{
private readonly GendemoRepository _Gendemorepository;
public GendemoService(GendemoRepository repository) : base(repository)
{
_Gendemorepository = repository;
}
#region
#endregion
}
}

View File

@ -1,5 +1,4 @@
using System;
using ZR.Model.Models;
using ZR.Model.System;
namespace ZR.Service.System