You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 rivejä
1.1 KiB

  1. using System;
  2. namespace Basic.Model
  3. {
  4. [Serializable]
  5. public partial class followproduct
  6. {
  7. #region �˴����ɹ�������
  8. private int _id;
  9. private int _product_id;
  10. private DateTime _add_time;
  11. private string _openid;
  12. /// <summary>
  13. /// ����ID
  14. /// </summary>
  15. public int id
  16. {
  17. set { _id = value; }
  18. get { return _id; }
  19. }
  20. /// <summary>
  21. /// ��Ʒid
  22. /// </summary>
  23. public int product_id
  24. {
  25. set { _product_id = value; }
  26. get { return _product_id; }
  27. }
  28. /// <summary>
  29. /// ��ע��ʱ��
  30. /// </summary>
  31. public DateTime add_time
  32. {
  33. set { _add_time = value; }
  34. get { return _add_time; }
  35. }
  36. /// <summary>
  37. /// Openid
  38. /// </summary>
  39. public string openid
  40. {
  41. set { _openid = value; }
  42. get { return _openid; }
  43. }
  44. #endregion
  45. }
  46. }