TbMbtLineCrInput.cs 1005 Bytes
using System;
using System.Collections.Generic;
using NCC.Common.Model;

namespace NCC.Blind.Entitys.Dto.TbMbtLine
{
    /// <summary>
    /// MBT人格线路修改输入参数
    /// </summary>
    public class TbMbtLineCrInput
    {
        /// <summary>
        /// 标题
        /// </summary>
        public string name { get; set; }
        
        /// <summary>
        /// MBT人格ID
        /// </summary>
        public string mbtId { get; set; }
        
        /// <summary>
        /// 线路概况
        /// </summary>
        public string remark { get; set; }
        
        /// <summary>
        /// 线路图片
        /// </summary>
        public List<FileControlsModel> banner { get; set; }
        
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTime? creatorTime { get; set; }
        
        /// <summary>
        /// 修改时间
        /// </summary>
        public DateTime? lastModifyTime { get; set; }
        
    }
}