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.

31 lines
602 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SlnMesnac.Model.domain
{
public class MonitorInfo
{
/// <summary>
///
/// </summary>
public string stationCode { get; set; }
/// <summary>
/// 员工Id
/// </summary>
public string staffId { get; set; }
/// <summary>
/// 员工名
/// </summary>
public string staffName { get; set; }
/// <summary>
/// 员工类型
/// </summary>
public string staffType { get; set; }
}
}