using Castle.ActiveRecord; using NHibernate.Criterion; using System; using System.Text; namespace BizCom { [ActiveRecord("CE_ErpAssignLog")] public class CeErpAssignLog : ComBase { /// /// /// [PrimaryKey(PrimaryKeyType.Native)] public int ID { get; set; } private string _ctid = ""; /// /// 订单 /// [Property] public string ctid { get { return _ctid; } set { _ctid = value; } } private int _userid = 0; /// /// 用户ID /// [Property] public int userid { get { return _userid; } set { _userid = value; } } private string _seller_memo = ""; /// /// 文件名 /// [Property] public string seller_memo { get { return _seller_memo; } set { _seller_memo = value; } } private string _reason = ""; /// /// 理由 /// [Property] public string reason { get { return _reason; } set { _reason = value; } } private DateTime _createtime = DateTime.Now; /// /// 时间 /// [Property] public DateTime createtime { get { return _createtime; } set { _createtime = value; } } } }