using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Application
{
///
/// 量表数据保存要求
///
public class CustomBusScaleRequestDTO
{
///
///
///
public long CustomId { get; set; }
///
///
///
public long ScaleId { get; set; }
///
///
///
public List Inputs { get; set; }
}
public class ScalTotals
{
public int Total { get; set; }
}
public class ScalListItem
{
public string type { get; set; }
public string name { get; set; }
public int value { get; set; }
}
public class BusScaleResult
{
public string Result { get; set; }
public string Tag { get; set; }
public List scalLists { get; set; }
}
public class CustomBusScaleDto
{
public long Id { get; set; }
public long ScaleId { get; set; }
///
///
///
public long ReportId { get; set; }
///
///
///
public DateTimeOffset TestTime { get; set; }
}
public class CustomBusScaleV2Dto
{
public long ReportId { get; set; }
public int Type{get;set;}
}
public class xxfgItem
{
public string type { get; set; }
public string name { get; set; }
public string desc { get; set; }
public int value { get; set; }
}
public class xxfgTagbject
{
public List tags { get; set; }
}
public class Tag
{
public string name { get; set; }
public string code { get; set; }
public List features { get; set; }
public List learning_performance { get; set; }
public string notes { get; set; }
}
}