You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
995 B
C#
41 lines
995 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("sys_modual")]
|
|
[Serializable]
|
|
public class SysModual : BaseEntity
|
|
{
|
|
[Column("modual_id")]
|
|
[DisplayName("模块编号")]
|
|
public int ModualId { get; set; }
|
|
|
|
[Column("modual_code")]
|
|
[DisplayName("模块代码")]
|
|
public string ModualCode { get; set; }
|
|
|
|
[Column("modual_type")]
|
|
[DisplayName("模块类型")]
|
|
public string ModualType { get; set; }
|
|
|
|
[Column("modual_name")]
|
|
[DisplayName("模块名称")]
|
|
public string ModualName { get; set; }
|
|
|
|
[Column("modual_desc")]
|
|
[DisplayName("模块描述")]
|
|
public string ModualDesc { get; set; }
|
|
|
|
[Column("model_id")]
|
|
[DisplayName("车型编号")]
|
|
public int? ModelId { get; set; }
|
|
|
|
|
|
}
|
|
}
|