28 lines
646 B
C#
28 lines
646 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_checkarea")]
|
|||
|
|
public class FmCheckArea
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 区域id
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|||
|
|
public long AreaId { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 打卡点id
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|||
|
|
public long PointId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|