28 lines
600 B
C#
28 lines
600 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Zxd.Core.Shared.Dto;
|
|
|
|
namespace Hg.Core.Domain.Dto
|
|
{
|
|
public class DepartmentDto
|
|
{
|
|
public int DepartmentId { get; set; }
|
|
|
|
public string? Title { get; set; }
|
|
|
|
public string? Appid { get; set; }
|
|
|
|
public string? CompanyCode { get; set; }
|
|
|
|
public int? Saledeptid { get; set; }
|
|
|
|
public bool? IsDept { get; set; }
|
|
|
|
public DeptmentDto? Deptment { get; set; }
|
|
}
|
|
}
|