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