31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
/***********************************************************
|
|
**项目名称: BZPT.Repositories
|
|
**功能描述: 农民工进出场记录
|
|
**作 者: 初版由CodeSmith生成。
|
|
**版 本 号: 1.0
|
|
**修改历史:
|
|
************************************************************/
|
|
namespace BZPT.Repositories.Pro
|
|
{
|
|
using System;
|
|
using System.Linq;
|
|
using BZPT.Domains.IRepositories.Pro;
|
|
using BZPT.Domains.Entity.Pro;
|
|
|
|
/// <summary>
|
|
/// TeamPersonnelLog仓储操作
|
|
/// </summary>
|
|
public partial class TeamPersonnelLogRepository : DefaultRepository<TeamPersonnelLog>, ITeamPersonnelLogRepository
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="TeamPersonnelLogRepository"/> class.
|
|
/// </summary>
|
|
/// <param name="options">
|
|
/// The options.
|
|
/// </param>
|
|
public TeamPersonnelLogRepository(IRepositoryOptions options, DBContext db)
|
|
: base(options,db)
|
|
{
|
|
}
|
|
}
|
|
} |