123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- using System;
- using Lottomat.Application.Code;
- using Lottomat.Util;
- namespace Lottomat.Application.Entity.GalleryManage
- {
-
-
-
-
-
-
-
- public class Tk_Gallery : BaseEntity
- {
- #region 实体成员
-
-
-
-
-
-
-
-
-
- public string ID { get; set; }
-
-
-
-
- public int? GalleryNumber { get; set; }
-
-
-
-
- public string GalleryName { get; set; }
-
-
-
-
- public string CategoryId { get; set; }
-
-
-
-
- public int? SortCode { get; set; }
-
-
-
-
- public bool? IsPicZip { get; set; }
-
-
-
-
- public string Reamrk { get; set; }
-
-
-
-
- public string SeoKey { get; set; }
-
-
-
-
- public DateTime? CreateTime { get; set; }
-
-
-
-
- public string CreateUserId { get; set; }
-
-
-
-
- public string CreateUserName { get; set; }
-
-
-
-
- public bool? IsDelete { get; set; }
-
-
-
-
- public string AreaCode { get; set; }
-
-
-
-
- public int? HotNumber { get; set; }
- #endregion
- #region 扩展操作
-
-
-
- public override void Create()
- {
- this.ID = CommonHelper.GetGuid().ToString();
- this.CreateUserId = OperatorProvider.Provider.Current().UserId;
- this.CreateUserName = OperatorProvider.Provider.Current().UserName;
- this.CreateTime = DateTime.Now;
- this.HotNumber = 0;
- this.IsDelete = false;
-
-
- }
-
-
-
-
- public override void Modify(string keyValue)
- {
- this.ID = keyValue;
- }
- #endregion
- }
- }
|