19 lines
502 B
C#
19 lines
502 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.DTO
|
|
{
|
|
public class saledsleadDesDto
|
|
{
|
|
public string appid { get; set; }
|
|
public string appuserid { get; set; }
|
|
public string deptid { get; set; }
|
|
public string eid { get; set; }
|
|
public string employee_id { get; set; }
|
|
public string employeeid { get; set; }
|
|
public string employee { get; set; }
|
|
public string ext_flag { get; set; }
|
|
}
|
|
}
|