50 lines
1.6 KiB
C#
50 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Crm.Domain.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 string? umid { get; set; }
|
|
public int? is_deleted { get; set; }
|
|
public int? appid { get; set; }
|
|
public int is_main { get; set; }
|
|
public string? appusername { get; set; }
|
|
public DateTime? update_time { get; set; }
|
|
public DateTime? create_time { get; set; }
|
|
public DateTime? soft_create_time { get; set; }
|
|
public string? productString { get; set; }
|
|
public DateTime? regdate { get; set; }
|
|
public DateTime? last_empower_time { get; set; }
|
|
}
|
|
public class GetEmpowermentByAppidDto : SearchPageBase
|
|
{
|
|
public string appid { get; set; }
|
|
public int? eid { get; set; }
|
|
public string? name { get; set; }
|
|
public int? userId { get; set; }
|
|
public int? deptId { get; set; }
|
|
public string? umid { get; set; }
|
|
}
|
|
public class BusinessLineDto
|
|
{
|
|
public bool isLine { get; set; }
|
|
|
|
public int deptId { get; set; }
|
|
|
|
public List<int> eidInfo { get; set; }
|
|
}
|
|
}
|