43 lines
897 B
C#
43 lines
897 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.Zxd
|
|
{
|
|
[Table("t_table_field")]
|
|
public class TableField
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
public string? Module { get; set; }
|
|
|
|
public string? Field { get; set; }
|
|
|
|
public string? Type { get; set; }
|
|
|
|
public string? Title { get; set; }
|
|
|
|
public int? Width { get; set; }
|
|
|
|
public string? Fixed { get; set; }
|
|
|
|
public string? Templet { get; set; }
|
|
|
|
public bool? Sort { get; set; }
|
|
|
|
[Column("create_time")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
public bool? Hide { get; set; }
|
|
|
|
public int Order { get; set; }
|
|
|
|
public bool? Checkbox { get; set; }
|
|
|
|
public ICollection<FieldSetting>? FieldSettings { get; set; }
|
|
}
|
|
}
|