Zxd.Core/code/Zxd.Crm.Domain/Dto/CreateFieldDto.cs

67 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Crm.Domain.Dto
{
public class CreateFieldDto
{
/// <summary>
/// 字段
/// </summary>
public string? Field { get; set; }
/// <summary>
/// 类型
/// normal常规列无需设定
/// checkbox复选框列
/// radio单选框列
/// numbers序号列
/// space空列
/// </summary>
public string? Type { get; set; }
/// <summary>
/// 标题
/// </summary>
public string? Title { get; set; }
/// <summary>
/// 设定列宽
/// </summary>
public int? Width { get; set; }
/// <summary>
/// 固定列。可选值有left固定在左、right固定在右
/// </summary>
public string? Fixed { get; set; }
/// <summary>
/// 自定义列模板
/// </summary>
public string? Templet { get; set; }
/// <summary>
/// 是否允许排序
/// </summary>
public bool? Sort { get; set; }
/// <summary>
/// 是否初始隐藏列
/// </summary>
public bool? Hide { get; set; }
/// <summary>
/// 排序
/// </summary>
public int? Order { get; set; }
/// <summary>
/// checkbox
/// </summary>
public bool? Checkbox { get; set; }
}
}