Zxd.Core/code/Zxd.Core.Domain/Dto/Dncmsbase/MonthAttentionDto.cs

18 lines
381 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Core.Domain.Dto.Dncmsbase
{
public class MonthAttentionDto
{
public string? Date { get; set; }
public List<DeptStatistcsDto>? DeptData { get; set; }
public List<DeptStatistcsDto>? ConterData { get; set; }
}
}