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.PersonnelManagement
- {
- /// <summary>
- /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
- /// Copyright (c) 2013-2018 北京泉江科技有限公司
- /// 创 建:超级管理员
- /// 日 期:2020-01-05 11:38
- /// 描 述:社团签到
- /// </summary>
- public class CommunityAttendanceEntity
- {
- #region 实体成员
- /// <summary>
- /// Id
- /// </summary>
- [Column("ID")]
- public string Id { get; set; }
- /// <summary>
- /// CommunityId
- /// </summary>
- [Column("COMMUNITYID")]
- public string CommunityId { get; set; }
- /// <summary>
- /// StuNo
- /// </summary>
- [Column("STUNO")]
- public string StuNo { get; set; }
- /// <summary>
- /// StuName
- /// </summary>
- [Column("STUNAME")]
- public string StuName { get; set; }
- /// <summary>
- /// Type
- /// </summary>
- [Column("TYPE")]
- public string Type { get; set; }
- /// <summary>
- /// Date
- /// </summary>
- [Column("DATE")]
- public DateTime? Date { 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
- }
- }
|