using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Application { /// /// /// public class ImportScaleDescriptionDTO { /// /// ScaleId /// public long ScaleId { get; set; } /// /// 介绍 /// public string Introduce { get; set; } /// /// 应用 /// public string Application { get; set; } /// /// 须知 /// public string Notice { get; set; } /// /// /// public string UserTime { get; set; } /// /// Sort排序 /// public int Sort { get; set; } } }