28 lines
822 B
C#
28 lines
822 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ToDoWorker.Dto
|
|
{
|
|
public class CustomerEmployeeMap
|
|
{
|
|
public int? customerid { get; set; }
|
|
public int? eid { get; set; }
|
|
public int? deptid { get; set; }
|
|
public int? groupid { get; set; }
|
|
public string? resid { get; set; }
|
|
public string? umid { get; set; }
|
|
public string? employee_name { get; set; }
|
|
public string? create_time { get; set; }
|
|
public int? is_wework { get; set; }
|
|
public int? is_mobile { get; set; }
|
|
public int? is_belong { get; set; }
|
|
|
|
public string? Nickname { get; set; }
|
|
public string? Username { get; set; }
|
|
|
|
public string? Headimgurl { get; set; }
|
|
}
|
|
} |