168 lines
4.0 KiB
C#
168 lines
4.0 KiB
C#
|
/***********************************************************
|
|||
|
**项目名称:BZPT.Entity
|
|||
|
**功能描述: Clock 的摘要说明
|
|||
|
**作 者: 此代码由CodeSmith生成。
|
|||
|
**版 本 号: 1.0
|
|||
|
**修改历史:
|
|||
|
************************************************************/
|
|||
|
|
|||
|
namespace BZPT.Domains.Entity.Labor
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///Clock,工人考勤记录(根据标段分表)\r\n项目+标段分表
|
|||
|
/// </summary>
|
|||
|
[Serializable]
|
|||
|
[Table(name:"Labor_Clock")]
|
|||
|
public partial class Clock : EntityBase<string>, ILabor
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 劳务队人员id
|
|||
|
/// </summary>
|
|||
|
|
|||
|
[Required(ErrorMessage = "劳务队人员id是必须的,请先完善")]
|
|||
|
[Display(Name = "劳务队人员id")]
|
|||
|
[StringLength(144)]
|
|||
|
public string DFID { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 考勤人身份证号码
|
|||
|
/// </summary>
|
|||
|
|
|||
|
[Display(Name = "考勤人身份证号码")]
|
|||
|
[StringLength(100)]
|
|||
|
public string KC01 { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 考勤人姓名
|
|||
|
/// </summary>
|
|||
|
|
|||
|
[Display(Name = "考勤人姓名")]
|
|||
|
[StringLength(80)]
|
|||
|
public string KC02 { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 考勤时间
|
|||
|
/// </summary>
|
|||
|
|
|||
|
[Display(Name = "考勤时间")]
|
|||
|
public DateTime? KC03 { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 考勤地址
|
|||
|
/// </summary>
|
|||
|
|
|||
|
[Display(Name = "考勤地址")]
|
|||
|
[StringLength(3200)]
|
|||
|
public string KC04 { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 经度
|
|||
|
/// </summary>
|
|||
|
|
|||
|
[Display(Name = "经度")]
|
|||
|
public decimal? KC05 { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 纬度
|
|||
|
/// </summary>
|
|||
|
|
|||
|
[Display(Name = "纬度")]
|
|||
|
public decimal? KC06 { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 图片地址
|
|||
|
/// </summary>
|
|||
|
|
|||
|
[Display(Name = "图片地址")]
|
|||
|
[StringLength(2147483647)]
|
|||
|
public string KC07 { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 1上班卡,0下班卡
|
|||
|
/// </summary>
|
|||
|
|
|||
|
[Display(Name = "1上班卡,0下班卡")]
|
|||
|
public int? KC08 { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 人脸,手持机、3扫码,4导入
|
|||
|
/// </summary>
|
|||
|
|
|||
|
[Display(Name = "人脸,手持机、3扫码,4导入")]
|
|||
|
public int? KC12 { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 状态,0正常,1迟到,2早退,3旷工,4请假
|
|||
|
/// </summary>
|
|||
|
|
|||
|
[Display(Name = "状态,0正常,1迟到,2早退,3旷工,4请假")]
|
|||
|
public int? KC09 { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 同步状态
|
|||
|
/// </summary>
|
|||
|
|
|||
|
[Display(Name = "同步状态")]
|
|||
|
public int? KC10 { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 备注
|
|||
|
/// </summary>
|
|||
|
|
|||
|
[Display(Name = "备注")]
|
|||
|
[StringLength(2000)]
|
|||
|
public string KC11 { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 更新时间
|
|||
|
/// </summary>
|
|||
|
|
|||
|
[Display(Name = "更新时间")]
|
|||
|
public DateTime? UpdateTime { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 更新人
|
|||
|
/// </summary>
|
|||
|
|
|||
|
[Display(Name = "更新人")]
|
|||
|
[StringLength(152)]
|
|||
|
public string UpdateUser { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 创建时间
|
|||
|
/// </summary>
|
|||
|
|
|||
|
[Display(Name = "创建时间")]
|
|||
|
public DateTime? CreateTime { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 创建人
|
|||
|
/// </summary>
|
|||
|
|
|||
|
[Display(Name = "创建人")]
|
|||
|
[StringLength(152)]
|
|||
|
public string CreateUser { get; set; }
|
|||
|
|
|||
|
/// <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 EID { get; set; }
|
|||
|
}
|
|||
|
}
|