test 2
This commit is contained in:
31
Ewide.WorkOrderSys/Entity/Base/BaseEntity.cs
Normal file
31
Ewide.WorkOrderSys/Entity/Base/BaseEntity.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Linq;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.WorkOrderSys.Entity.Base
|
||||
{
|
||||
/// <summary>
|
||||
/// 基础实体类
|
||||
/// </summary>
|
||||
[DataContract]
|
||||
public abstract partial class BaseEntity
|
||||
{
|
||||
//public BaseEntity()
|
||||
//{
|
||||
// //CreateTime = DateTime.Now;
|
||||
// //LastUpdateTime = DateTime.Now;
|
||||
// //IsDeleted = 0;
|
||||
//}
|
||||
////[NotUpdateField]
|
||||
//[Display(Name = "Id")]
|
||||
//[Column("Id")]
|
||||
//[DataMember]
|
||||
//public long Id { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user