You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using Learun.Util;
- using System;
- using System.ComponentModel.DataAnnotations.Schema;
-
- namespace Learun.Application.TwoDevelopment.EducationalAdministration
- {
- /// <summary>
- /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
- /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
- /// 创 建:超级管理员
- /// 日 期:2021-09-27 10:33
- /// 描 述:学金类型
- /// </summary>
- public class ScholarshipEntity
- {
- #region 实体成员
- /// <summary>
- /// Id
- /// </summary>
- [Column("ID")]
- public string Id { get; set; }
- /// <summary>
- /// ItemName
- /// </summary>
- [Column("ITEMNAME")]
- public string ItemName { get; set; }
- /// <summary>
- /// ItemCode
- /// </summary>
- [Column("ITEMCODE")]
- public string ItemCode { get; set; }
- /// <summary>
- /// 0启用 1 禁用
- /// </summary>
- [Column("ISVALID")]
- public int? IsValid { get; set; }
- /// <summary>
- /// 0未删除 1 已删除
- /// </summary>
- [Column("ISDEL")]
- public int? IsDel { get; set; }
- /// <summary>
- /// 0 奖学金 1助学金
- /// </summary>
- [Column("ISTYPE")]
- public int? IsType { get; set; }
- #endregion
-
- #region 扩展操作
- /// <summary>
- /// 新增调用
- /// </summary>
- public void Create()
- {
- this.Id = Guid.NewGuid().ToString();
- }
- /// <summary>
- /// 编辑调用
- /// </summary>
- /// <param name="keyValue"></param>
- public void Modify(string keyValue)
- {
- this.Id = keyValue;
- }
- #endregion
- #region 扩展字段
- #endregion
- }
- }
|