30 lines
953 B
C#
30 lines
953 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WX.CRM.Common.StockHelper;
|
|
|
|
namespace WX.CRM.Model.DTO
|
|
{
|
|
public class GetEmpowermentDto
|
|
{
|
|
public int id { get; set; }
|
|
//public bool check {get;set;}
|
|
public int sort { get; set; }
|
|
public int? employee_id { get; set; }
|
|
public string employee_name { get; set; }
|
|
public string phone { get; set; }
|
|
public string showPhone { get; set; }
|
|
public string resid { get; set; }
|
|
public int? is_deleted { get; set; }
|
|
public int? appid { get; set; }
|
|
public string appusername { get; set; }
|
|
public DateTime? update_time { get; set; }
|
|
public DateTime? create_time { get; set; }
|
|
public string productString { get; set; }
|
|
public int is_main { get; set; }
|
|
public DateTime? last_empower_time { get; set; }
|
|
}
|
|
}
|