28 lines
665 B
C#
28 lines
665 B
C#
|
|
using SqlSugar;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace OpenAuth.Repository.Domain.FireManagement
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 打卡点与打卡人员中间表
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarTable("fm_checkpointuser")]
|
|||
|
|
public class FmCheckPointUser
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 打卡人员id
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|||
|
|
public long UserId { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 打卡点id
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|||
|
|
public long PointId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|