using System;
using System.Collections.Generic;
using System.Text;
namespace SlnMesnac.Model.dto
{
public class StaffAttendance
{
///
/// 员工ID
///
public string staffId { get; set; }
///
/// 员工姓名
///
public string staffName { get; set; }
///
/// 打卡类型
///
public string attendanceType { get; set; }
///
/// 班组编号
///
public string teamCode { get; set; }
}
}