2021-04-13 17:46:18 +08:00
|
|
|
using WinformGeneralDeveloperFrame.Commons;
|
2021-05-29 14:11:44 +08:00
|
|
|
|
2021-04-13 17:46:18 +08:00
|
|
|
namespace MES.Entity
|
|
|
|
|
{
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.Data.Entity.Spatial;
|
|
|
|
|
|
|
|
|
|
[Table("sysDictData")]
|
|
|
|
|
public partial class sysDictDataInfo
|
|
|
|
|
{
|
2021-05-29 14:11:44 +08:00
|
|
|
///id
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txtid")]
|
|
|
|
|
public int id{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///类型
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txtdictTypeID")]
|
|
|
|
|
public int dictTypeID{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///编码
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txtcode")]
|
|
|
|
|
public string code{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///值
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txtvalue")]
|
|
|
|
|
public string value{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///备注
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txtremark")]
|
|
|
|
|
public string remark{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///排序
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txtsort")]
|
|
|
|
|
public string sort{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///创建人
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txtcreatorId")]
|
|
|
|
|
public int creatorId{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///创建时间
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txtcreateTime")]
|
|
|
|
|
public DateTime? createTime{set;get;}=DateTime.Now;
|
2021-05-29 14:11:44 +08:00
|
|
|
///编辑人
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txteditorId")]
|
|
|
|
|
public int editorId{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///editTime
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txteditTime")]
|
|
|
|
|
public DateTime? editTime{set;get;}=DateTime.Now;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|