/***********************************************************
**项目名称:BZPT.Entity
**功能描述: TeamPersonnel 的摘要说明
**作 者: 此代码由CodeSmith生成。
**版 本 号: 1.0
**修改历史:
************************************************************/
namespace BZPT.Domains.Entity.Pro
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
///
///TeamPersonnel,劳务队成员
///
[Serializable]
[Table(name:"Pro_TeamPersonnel")]
public partial class TeamPersonnel : EntityBase, IPro, ILogicDelete
{
///
/// 实名制信息人员id
///
[Display(Name = "实名制信息人员id")]
[StringLength(144)]
public string FID { get; set; }
///
/// 劳务队ID
///
[Required(ErrorMessage = "劳务队ID是必须的,请先完善")]
[Display(Name = "劳务队ID")]
[StringLength(144)]
public string DID { get; set; }
///
/// 班组ID
///
[Required(ErrorMessage = "班组ID是必须的,请先完善")]
[Display(Name = "班组ID")]
[StringLength(144)]
public string EID { get; set; }
///
/// 合同编号
///
[Display(Name = "合同编号")]
[StringLength(144)]
public string HC02 { get; set; }
///
/// 工种类型
///
[Display(Name = "工种类型")]
[StringLength(144)]
public string DFC01 { get; set; }
///
/// 入场日期
///
[Display(Name = "入场日期")]
public DateTime? DFC02 { get; set; }
///
/// 离场时间
///
[Display(Name = "离场时间")]
public DateTime? DFC03 { get; set; }
///
/// 薪资类型 薪资类型 0=计时 1=计件 2=计月
///
[Display(Name = "薪资类型 薪资类型 0=计时 1=计件 2=计月")]
public int? DFC04 { get; set; }
///
/// 标准薪资标准薪资(天)
///
[Display(Name = "标准薪资标准薪资(天)")]
public decimal? DFC05 { get; set; }
///
/// 同步状态
///
[Display(Name = "同步状态")]
public int? DFC06 { get; set; }
///
/// 认证状态
///
[Display(Name = "认证状态")]
public int? DFC07 { get; set; }
///
/// 证件号码
///
[Display(Name = "证件号码")]
[StringLength(100)]
public string FC07 { get; set; }
///
/// 数据来源(录入类型)
///
[Display(Name = "数据来源(录入类型)")]
[StringLength(200)]
public string DFC08 { get; set; }
///
/// 更新时间
///
[Display(Name = "更新时间")]
public DateTime? UpdateTime { get; set; }
///
/// 更新人
///
[Display(Name = "更新人")]
[StringLength(152)]
public string UpdateUser { get; set; }
///
/// 创建时间
///
[Display(Name = "创建时间")]
public DateTime? CreateTime { get; set; }
///
/// 创建人
///
[Display(Name = "创建人")]
[StringLength(152)]
public string CreateUser { get; set; }
///
/// 是否已删除
///
[Display(Name = "是否已删除")]
public bool IsDeleted { get; set; }
}
}