38 lines
893 B
C#
38 lines
893 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WX.CRM.Model.DTO
|
|
{
|
|
public class cmsresdeptRet
|
|
{
|
|
public int errcode { get; set; }
|
|
public string errmsg { get; set; }
|
|
public List<cmsdeptData> data { get; set; }
|
|
|
|
}
|
|
public class cmsdeptData
|
|
{
|
|
public int eid { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public int deptid { get; set; }
|
|
public string deptname { get; set; }
|
|
public string eidname { get; set; }
|
|
}
|
|
|
|
public class ComplaintLabelDto
|
|
{
|
|
public bool InComplaint { get; set; }
|
|
public bool OutComplaint { get; set; }
|
|
}
|
|
|
|
public class CustomerInfoDto
|
|
{
|
|
public string name { get; set; }
|
|
public string cname { get; set; }
|
|
public string val { get; set; }
|
|
}
|
|
}
|