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

30 lines
1013 B
C#
Raw Normal View History

2025-03-02 23:30:03 +08:00
/***********************************************************
**: 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";
}
}
}