You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
615 B
C#

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