TemplatePro/BZPT.Domains/Services/Labor/RealInfoService.cs

30 lines
1013 B
C#

/***********************************************************
**项目名称: BZPT.IServices
**功能描述: RealInfoServices 的摘要说明
**作 者: 此代码由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>
/// RealInfo 业务层
/// </summary>
public partial class RealInfoService : SugarServiceBase< RealInfo, RealInfoDto>,IRealInfoService
{
public override string GetDomainShortName()
{
return "RealInfo";
}
}
}