19 lines
464 B
C#
19 lines
464 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Domain.Dto.Zxd
|
|
{
|
|
public class DeptMentDto
|
|
{
|
|
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; }
|
|
}
|
|
}
|