using Learun.Util; using System; using System.ComponentModel.DataAnnotations.Schema; namespace Learun.Application.TwoDevelopment.PersonnelManagement { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创 建:超级管理员 /// 日 期:2019-12-31 10:49 /// 描 述:科技项目 /// public class SRProjectEntity { #region 实体成员 /// /// 编号 /// [Column("ID")] public string ID { get; set; } /// /// 名称 /// [Column("NAME")] public string Name { get; set; } /// /// 内容 /// [Column("CONTENT")] public string Content { get; set; } /// /// 单位 /// [Column("UNIT")] public string Unit { get; set; } /// /// 经费 /// [Column("AMOUNT")] public decimal? Amount { get; set; } /// /// 参与人 /// [Column("PARTICIPANT")] public string Participant { get; set; } #endregion #region 扩展操作 /// /// 新增调用 /// public void Create() { this.ID = Guid.NewGuid().ToString(); } /// /// 编辑调用 /// /// public void Modify(string keyValue) { this.ID = keyValue; } #endregion #region 扩展字段 #endregion } }