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-Ultimate V7.0.0 数字化智慧校园
- /// Copyright (c) 2013-2018 北京泉江科技有限公司
- /// 创 建:超级管理员
- /// 日 期:2019-11-19 11:03
- /// 描 述:助学金管理
- /// </summary>
- public class StuGrantEntity
- {
- #region 实体成员
- /// <summary>
- /// 编号
- /// </summary>
- [Column("ID")]
- public string ID { get; set; }
- /// <summary>
- /// 月份
- /// </summary>
- [Column("MONTH")]
- public string Month { get; set; }
- /// <summary>
- /// 学生
- /// </summary>
- [Column("STUDENTID")]
- public string StudentID { get; set; }
- /// <summary>
- /// 审核状态
- /// </summary>
- [Column("STATUS")]
- public int? Status { get; set; }
- /// <summary>
- /// 金额
- /// </summary>
- [Column("PRICE")]
- public string Price { get; set; }
- /// <summary>
- /// 流程ID
- /// </summary>
- [Column("PROCESSID")]
- public string ProcessID { get; set; }
- /// <summary>
- /// 年
- /// </summary>
- [Column("YEAR")]
- public string Year { 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
- }
- }
|