add 后台服务 和 部署sql 等
This commit is contained in:
@@ -4,9 +4,8 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
//using System.Data.Entity.ModelConfiguration;
|
||||
using Ewide.NbzsZheliban.Entity;
|
||||
using System.Runtime.Serialization;
|
||||
namespace Ewide.NbzsZheliban.Entity
|
||||
namespace Ewide.Nbzs.Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据表实体类:Projects
|
||||
@@ -983,6 +982,22 @@ using System.Runtime.Serialization;
|
||||
[DataMember]
|
||||
public string ProjectOverUserName {get;set;}
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="创建时间")]
|
||||
[Column("CreateTime")]
|
||||
[DataMember]
|
||||
public DateTime? CreateTime {get;set;}
|
||||
/// <summary>
|
||||
/// 创建人ID
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="创建人ID")]
|
||||
[Column("CreateUserId")]
|
||||
[DataMember]
|
||||
public Guid? CreateUserId {get;set;}
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
/// </summary>
|
||||
|
||||
@@ -1047,6 +1062,14 @@ using System.Runtime.Serialization;
|
||||
[DataMember]
|
||||
public string XmFiles {get;set;}
|
||||
/// <summary>
|
||||
/// 是否删除
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="是否删除")]
|
||||
[Column("IsDeleted")]
|
||||
[DataMember]
|
||||
public bool IsDeleted {get;set;}
|
||||
/// <summary>
|
||||
/// 项目状态,到那个节点
|
||||
/// </summary>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user