using Castle.ActiveRecord; using NHibernate.Criterion; using System; using System.Text; namespace BizCom { [ActiveRecord("CE_ErpPackDataItem")] public class CeErpPackDataItem : ComBase { /// /// /// [PrimaryKey(PrimaryKeyType.Native)] public int ID { get; set; } private string _ctid = ""; /// /// 订单 /// [Property] public string ctid { get { return _ctid; } set { _ctid = value; } } private int _packId = 0; /// /// 下载次数 /// [Property] public int packId { get { return _packId; } set { _packId = value; } } private string _message = ""; /// /// 信息 /// [Property] public string message { get { return _message; } set { _message = value; } } } }