Commit 4085149a authored by 黄奎's avatar 黄奎

页面修改

parent 9805c8b7
using System;
using System.Collections.Generic;
using System.Text;
namespace Edu.Model.ViewModel.WeChat
{
/// <summary>
/// 企业微信打卡信息
/// </summary>
public class WechatCheck_ViewModel
{
/// <summary>
/// 企业微信用户Id
/// </summary>
public string Acctid { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 打卡日期
/// </summary>
public DateTime Date { get; set; }
/// <summary>
/// 校准状态类型:1-迟到;2-早退;3-缺卡;4-旷工;5-地点异常;6-设备异常
/// </summary>
public string ExceptionStr { get; set; }
/// <summary>
/// 迟到早退次数
/// </summary>
public int ExceptionCount { get; set; }
/// <summary>
/// 班次Id
/// </summary>
public int Scheduleid { get; set; }
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment