TemplatePro/BZPT.Domains/Entity/Pro/WorkAreaGroup.cs

70 lines
1.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/***********************************************************
**项目名称:BZPT.Entity
**功能描述: WorkAreaGroup 的摘要说明
**作 者: 此代码由CodeSmith生成。
**版 本 号: 1.0
**修改历史:
************************************************************/
namespace BZPT.Domains.Entity.Pro
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
/// <summary>
///WorkAreaGroup工区班组
/// </summary>
[Serializable]
[Table(name:"Pro_WorkAreaGroup")]
public partial class WorkAreaGroup : EntityBase<string>, IPro
{
/// <summary>
/// 班组ID
/// </summary>
[Required(ErrorMessage = "班组ID是必须的请先完善")]
[Display(Name = "班组ID")]
[StringLength(144)]
public string EID { get; set; }
/// <summary>
/// 工区ID
/// </summary>
[Required(ErrorMessage = "工区ID是必须的请先完善")]
[Display(Name = "工区ID")]
[StringLength(144)]
public string GQID { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[Display(Name = "更新时间")]
public DateTime? Update_Time { get; set; }
/// <summary>
/// 更新人
/// </summary>
[Display(Name = "更新人")]
[StringLength(152)]
public string Update_User { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Display(Name = "创建时间")]
public DateTime? Create_Time { get; set; }
/// <summary>
/// 创建人
/// </summary>
[Display(Name = "创建人")]
[StringLength(152)]
public string Create_User { get; set; }
}
}