using SqlSugar;
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
namespace SlnMesnac.Model.domain
{
[SugarTable("record_staff_attendance"), TenantAttribute("mes")]
[DataContract(Name = "RecordStaffAttendance 记录员工打卡")]
public class RecordStaffAttendance
{
//public BaseStaffInfo baseStaffInfo { get; set; }
///
///
///
[SugarColumn(ColumnName = "obj_id", IsPrimaryKey = true,IsIdentity =true)]
public int ObjId { get; set; }
///
/// 员工id
///
[SugarColumn(ColumnName = "staff_id")]
public string StaffId { get; set; }
///
/// 打卡类型
///
[SugarColumn(ColumnName = "attendance_type")]
public string AttendanceType { get; set; }
///
/// 班组编号
///
[SugarColumn(ColumnName = "team_code")]
public string TeamCode { get; set; }
///
/// 班次
///
[SugarColumn(ColumnName = "classes")]
public string Classes { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "remark")]
public string Remark { get; set; }
///
/// 是否标识
///
[SugarColumn(ColumnName = "is_flag")]
public string IsFlag { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName = "create_by")]
public string CreateBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "create_time")]
public string CreateTime { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnName = "update_by")]
public string UpdateBy { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "update_time")]
public string UpdateTime { get; set; }
}
}