27 lines
702 B
C#
27 lines
702 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WX.CRM.Model.DTO
|
|
{
|
|
public class BIDataTypeLevel
|
|
{
|
|
public int Limit { get; set; }
|
|
public int Duration { get; set; }
|
|
public string NoticeStartTime { get; set; }
|
|
public string NoticeEndTime { get; set; }
|
|
public string EMSecretkey { get; set; }
|
|
public string EMPostUrl { get; set; }
|
|
public List<DataTypeLevel> Items { get; set; }
|
|
}
|
|
|
|
public class DataTypeLevel
|
|
{
|
|
public string BIDataType { get; set; }
|
|
public int? Grade { get; set; }
|
|
public bool IsNotice { get; set; }
|
|
}
|
|
}
|