30 lines
1.0 KiB
C#
30 lines
1.0 KiB
C#
/***********************************************************
|
|
**项目名称: BZPT.IServices
|
|
**功能描述: SpecialManagerServices 的摘要说明
|
|
**作 者: 此代码由CodeSmith生成。
|
|
**版 本 号: 1.0
|
|
**修改历史:
|
|
************************************************************/
|
|
namespace BZPT.Domains.Services.Labor
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
using BZPT.Domains.Entity.Labor;
|
|
using BZPT.Domains.IService.Labor;
|
|
using BZPT.Dto.Labor;
|
|
|
|
|
|
/// <summary>
|
|
/// SpecialManager 业务层
|
|
/// </summary>
|
|
public partial class SpecialManagerService : SugarServiceBase< SpecialManager, SpecialManagerDto>,ISpecialManagerService
|
|
{
|
|
public override string GetDomainShortName()
|
|
{
|
|
return "SpecialManager";
|
|
}
|
|
}
|
|
}
|
|
|