using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace cylsg.Model.ECTEModel
|
{
|
|
/// <summary>
|
///
|
///</summary>
|
[SugarTable("OA_WorkReminder")]
|
public class OA_WorkReminder
|
{
|
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "Keyid", IsPrimaryKey = true, IsIdentity = true)]
|
public int Keyid { get; set; }
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "FirmId")]
|
public Guid FirmId { get; set; } = new Guid("88B49967-D590-452C-93C6-0049A75FA5FF");
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "Content")]
|
public string Content { get; set; } = null!;
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "Remender")]
|
public string? Remender { get; set; }
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "RemenderObject")]
|
public string? RemenderObject { get; set; }
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "RemenderType")]
|
public int? RemenderType { get; set; } = 0;
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "RemenderDept")]
|
public string? RemenderDept { get; set; } = "";
|
|
/// <summary>
|
/// 备 注:反馈时间
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "RemenderTime")]
|
public DateTime? RemenderTime { get; set; }
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "Remark")]
|
public string? Remark { get; set; } = "";
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "RemenderDelState")]
|
public int? RemenderDelState { get; set; } = 0;
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "RemenderObjectDelState")]
|
public int? RemenderObjectDelState { get; set; } = 0;
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "IsFinish")]
|
public int? IsFinish { get; set; } = 0;
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "FeedBackContent")]
|
public string? FeedBackContent { get; set; }
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "RemindState")]
|
public int? RemindState { get; set; } = 0;
|
|
|
}
|
|
|
}
|