36 lines
801 B
C#
36 lines
801 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Core.Shared.Dto
|
|
{
|
|
public class DeptmentDto
|
|
{
|
|
public int Id { get; set; }
|
|
public int? GroupId { get; set; }
|
|
public string? Title { get; set; }
|
|
|
|
public string? Code { get; set; }
|
|
|
|
public string? Appid { get; set; }
|
|
|
|
public int DepartmentId { get; set; }
|
|
|
|
public bool? IsDept { get; set; }
|
|
|
|
public string? CompanyCode { get; set; }
|
|
|
|
public int? SortNo { get; set; }
|
|
|
|
public List<DeptmentCampainDto>? DeptmentCampains { get; set; }
|
|
}
|
|
|
|
public class DeptmentCampainDto
|
|
{
|
|
public int StartCampainId { get; set; }
|
|
|
|
public int EndCampainId { get; set; }
|
|
}
|
|
} |