TemplatePro/BZPT.Domains/Entity/Pro/WorkAreaTeam.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
**功能描述: WorkAreaTeam 的摘要说明
**作 者: 此代码由CodeSmith生成。
**版 本 号: 1.0
**修改历史:
************************************************************/
namespace BZPT.Domains.Entity.Pro
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
/// <summary>
///WorkAreaTeam工区劳务队
/// </summary>
[Serializable]
[Table(name:"Pro_WorkAreaTeam")]
public partial class WorkAreaTeam : EntityBase<string>, IPro
{
/// <summary>
/// 劳务队ID
/// </summary>
[Required(ErrorMessage = "劳务队ID是必须的请先完善")]
[Display(Name = "劳务队ID")]
[StringLength(144)]
public string DID { 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; }
}
}