using System; using System.Collections.Generic; namespace NCC.Education.Entitys.Dto.TbMbtCharacter { /// /// MBT人格输出参数 /// public class TbMbtCharacterInfoOutput { /// /// 主键 /// public string id { get; set; } /// /// 名称 /// public string name { get; set; } /// /// 规则 /// public string rule { get; set; } /// /// 创建时间 /// public DateTime? creatorTime { get; set; } /// /// 修改时间 /// public DateTime? lastModifyTime { get; set; } } }