18 lines
381 B
C#
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; }
|
|
}
|
|
}
|