49 lines
1.4 KiB
C#
49 lines
1.4 KiB
C#
using Microsoft.Extensions.Logging;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Crm.Domain.Dto
|
|
{
|
|
public class SetEmpowermentDto
|
|
{
|
|
public int fromByEid { get; set; }
|
|
public List<Employee> EmployeeList { get; set; }
|
|
public List<SubProduct> ProductList { get; set; }
|
|
public int duration { get; set; }
|
|
public string appid { get; set; }
|
|
public string orderid { get; set; }
|
|
public DateTime endtime { get; set; }
|
|
}
|
|
public class UpdateLastEmpowerTime
|
|
{
|
|
public string residString { get; set; }
|
|
public long? timestamp { get; set; }
|
|
}
|
|
public class Employee
|
|
{
|
|
public int employee_id { get; set; }
|
|
public string resid { get; set; }
|
|
public string softusername { get; set; }
|
|
}
|
|
public class SubProduct
|
|
{
|
|
public int subproductid { get; set; }
|
|
public string subproductname { get; set; }
|
|
public string productcode { get; set; }
|
|
public decimal? price { get; set; }
|
|
public int? isEmpower { get; set; }
|
|
public int? producttype { get; set; }
|
|
public int? mid { get; set; }
|
|
}
|
|
public class SoftEmployeeBindChangeDto
|
|
{
|
|
public int to_by_eid { get; set; }
|
|
public string resid { get; set; }
|
|
public string show_phone { get; set; }
|
|
public int from_by_eid { get; set; }
|
|
}
|
|
}
|