ComplianceServer/oldcode/Model/SSO/DeptMentReturnModel.cs

28 lines
595 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WX.CRM.Model.SSO
{
public class GetDeptMentDto
{
public int? eid { get; set; }
}
public class CRMApiData<T>
{
public List<T> Data { get; set; }
}
public class CRMApiData
{
public List<DeptMentReturnModel> Data { get; set; }
}
public class DeptMentReturnModel
{
public decimal? Eid { get; set; }
public int? DeptId { get; set; }
public string DeptName { get; set; }
}
}