CeErpToManagement.cs 692 B

123456789101112131415161718192021222324252627282930313233343536
  1. using Castle.ActiveRecord;
  2. using NHibernate.Criterion;
  3. namespace BizCom
  4. {
  5. [ActiveRecord("CE_ErpToManagement")]
  6. public class CeErpToManagement : ComBase<CeErpToManagement>
  7. {
  8. [PrimaryKey(PrimaryKeyType.Assigned)]
  9. public string tid { get; set; }
  10. private string _ctid = "";
  11. /// <summary>
  12. ///交易编号
  13. /// </summary>
  14. [Property]
  15. public string ctid
  16. {
  17. get { return _ctid; }
  18. set { _ctid = value; }
  19. }
  20. private int _type = 0;
  21. [Property]
  22. public int type
  23. {
  24. get { return _type; }
  25. set { _type = value; }
  26. }
  27. }
  28. }