using System;
namespace Admin.NET.Application
{
///
/// 量表描述输出参数
///
public class BusScaleDescriptionDto
{
public string UsesTime { get; set; }
public string Title { get; set; }
///
/// ScaleId
///
public long ScaleId { get; set; }
///
/// 介绍
///
public string Introduce { get; set; }
///
/// 应用
///
public string Application { get; set; }
///
/// 须知
///
public string Notice { get; set; }
///
/// Sort排序
///
public int Sort { get; set; }
///
/// Id主键
///
public long Id { get; set; }
}
}