16 lines
349 B
C#
16 lines
349 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace E_ZKEcc.Request
|
|
{
|
|
public class EmployeeGetRequest
|
|
{
|
|
public string pinlist { get; set; }
|
|
public int offduty { get; set; }
|
|
public string deptnumberlist { get; set; }
|
|
public int fetch_child { get; set; }
|
|
}
|
|
}
|