22 lines
521 B
C#
22 lines
521 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>
|
|
[SqlSugar.SugarTable("fm_usertimeslot")]
|
|
public class FmUserTimeSlot
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string Id { get; set; }
|
|
public long CreateId { get; set; }
|
|
public string TimeSlot { get; set; }
|
|
}
|
|
}
|