TbEvaluationCrInput.cs 1011 Bytes
using System;
using System.Collections.Generic;
using NCC.Common.Model;

namespace NCC.Education.Entitys.Dto.TbEvaluation
{
    /// <summary>
    /// 测评信息修改输入参数
    /// </summary>
    public class TbEvaluationCrInput
    {
        /// <summary>
        /// 标题
        /// </summary>
        public string title { get; set; }
        
        /// <summary>
        /// 图片
        /// </summary>
        public List<FileControlsModel> img { get; set; }
        
        /// <summary>
        /// 图文信息
        /// </summary>
        public string editors { get; set; }
        
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTime? creatorTime { get; set; }
        
        /// <summary>
        /// 修改时间
        /// </summary>
        public DateTime? lastModifyTime { get; set; }
        /// <summary>
        /// 是否默认 1--默认 2--普通
        /// </summary>
        public string detault { get; set; }

    }
}