TemplatePro/BZPT.Domains/IService/Labor/IRealInfoService.cs

23 lines
867 B
C#
Raw Normal View History

2025-03-02 23:30:03 +08:00
/***********************************************************
**: BZPT.IServices
**: RealInfoServices
** : CodeSmith生成
** : 1.0
**
************************************************************/
namespace BZPT.Domains.IService.Labor
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using BZPT.Domains.Entity.Labor;
using BZPT.Dto.Labor;
/// <summary>
/// RealInfo 业务层
/// </summary>
public partial interface IRealInfoService : IDomainService,ICRUDService<RealInfo, RealInfoDto>
{
}
}