Zxd.Core/code/Zxd.Crm.Domain/Dto/GetDeptMentDto.cs

24 lines
598 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Crm.Domain.Dto
{
public class GetDeptMentDto
{
public int? eid { get; set; }
public string? CompanyCode { get; set; }
}
public class DeptMentReturnModel
{
public string? Eid { get; set; }
public int? DeptId { get; set; }
public string? DeptName { get; set; }
public string? CompanyCode { get; set; }
public string? AppId { get; set; }
public int? SaleDeptId { get; set; }
}
}