| 123456789101112131415161718192021222324252627282930313233343536 |
- using Castle.ActiveRecord;
- using NHibernate.Criterion;
- namespace BizCom
- {
- [ActiveRecord("CE_ErpToManagement")]
- public class CeErpToManagement : ComBase<CeErpToManagement>
- {
- [PrimaryKey(PrimaryKeyType.Assigned)]
- public string tid { get; set; }
- private string _ctid = "";
- /// <summary>
- ///交易编号
- /// </summary>
- [Property]
- public string ctid
- {
- get { return _ctid; }
- set { _ctid = value; }
- }
- private int _type = 0;
- [Property]
- public int type
- {
- get { return _type; }
- set { _type = value; }
- }
- }
- }
|