36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using SqlSugar;
|
||
using System;
|
||
|
||
namespace Model.Entity.Inspection
|
||
{
|
||
/// <summary>
|
||
/// 值班排班(按天排班;通知规则勾选"通知值班人"时按告警日期匹配当班人)
|
||
/// </summary>
|
||
public class DutyRosterEntity : BaseEntity
|
||
{
|
||
/// <summary>
|
||
/// 值班日期(当天 00:00:00)
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "值班日期")]
|
||
public DateTime DutyDate { get; set; }
|
||
|
||
/// <summary>
|
||
/// 值班人姓名
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "值班人", Length = 50)]
|
||
public string PersonName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 联系电话(用于钉钉/企微 @ 手机号)
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "联系电话", Length = 30, IsNullable = true)]
|
||
public string Phone { get; set; }
|
||
|
||
/// <summary>
|
||
/// 备注
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "备注", Length = 500, IsNullable = true)]
|
||
public string Remark { get; set; }
|
||
}
|
||
}
|