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