using System;
using System.ComponentModel.DataAnnotations;
using Chloe.Annotations;
namespace WaterCloud.Domain.ProcessManage
{
///
/// 创 建:超级管理员
/// 日 期:2020-12-03 09:48
/// 描 述:工序管理实体类
///
[TableAttribute("mes_ProcessFlow")]
public class ProcessFlowEntity : IEntity,ICreationAudited,IModificationAudited,IDeleteAudited
{
///
/// 工序id
///
///
[Column("F_Id", IsPrimaryKey = true)]
public string F_Id { get; set; }
///
/// 工序名称
///
///
public string F_ProcessFlowName { get; set; }
///
///
///
///
public bool? F_DeleteMark { get; set; }
///
///
///
///
public bool? F_EnabledMark { get; set; }
///
/// 工序备注
///
///
public string F_Description { get; set; }
///
///
///
///
public DateTime? F_CreatorTime { get; set; }
///
///
///
///
public string F_CreatorUserId { get; set; }
///
///
///
///
public DateTime? F_LastModifyTime { get; set; }
///
///
///
///
public string F_LastModifyUserId { get; set; }
///
///
///
///
public DateTime? F_DeleteTime { get; set; }
///
///
///
///
public string F_DeleteUserId { get; set; }
}
}