//------------------------------------------------------------------------------ // // This code was generated by a CodeSmith Template. // // DO NOT MODIFY contents of this file. Changes to this // file will be lost if the code is regenerated. // Author:Yubao Li // //------------------------------------------------------------------------------ using System; namespace OpenAuth.Domain { /// /// 同意申请单 /// public partial class CommonApply : Entity { public CommonApply() { this.Sort= 0; this.Name= string.Empty; this.Comment= string.Empty; this.State= string.Empty; this.StateName= string.Empty; this.ApplyTime = DateTime.Now; } /// /// /// public int Sort { get; set; } /// /// /// public DateTime ApplyTime { get; set; } /// /// /// public string Name { get; set; } /// /// /// public string Comment { get; set; } /// /// /// public string State { get; set; } /// /// /// public string StateName { get; set; } /// /// /// public System.Guid UserId { get; set; } /// /// /// public System.Guid? ControllerUserId { get; set; } } }