TbAreaLineNodeInfoOutput.cs 1.5 KB
using System;
using System.Collections.Generic;
using NCC.Common.Model;

namespace NCC.Blind.Entitys.Dto.TbAreaLineNode
{
    /// <summary>
    /// 地域线路节点输出参数
    /// </summary>
    public class TbAreaLineNodeInfoOutput
    {
        /// <summary>
        /// 主键
        /// </summary>
        public string id { get; set; }
        
        /// <summary>
        /// 地域线路ID
        /// </summary>
        public string areaLineId { get; set; }
        
        /// <summary>
        /// 节点标题
        /// </summary>
        public string title { get; set; }
        
        /// <summary>
        /// 节点简介
        /// </summary>
        public string description { get; set; }
        
        /// <summary>
        /// 节点图片
        /// </summary>
        public List<FileControlsModel> banner { get; set; }
        
        /// <summary>
        /// 节点注意事项
        /// </summary>
        public string remark { get; set; }
        
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTime? creatorTime { get; set; }
        
        /// <summary>
        /// 修改时间
        /// </summary>
        public DateTime? lastModifyTime { get; set; }

        /// <summary>
        /// 排序
        /// </summary>
        public int? sorts { get; set; }

        /// <summary>
        /// 是否填写了个人信息  1--未填写  2--已填写
        /// </summary>
        public string isAppend { get; set; }

    }
}