ContributeAttendInfo.cs 586 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. namespace YZXYH.Repository.Models
  5. {
  6. [Serializable]
  7. public partial class ContributeAttendInfo
  8. {
  9. public string ContributeNo { get; set; }
  10. public string ContributeActivityNo { get; set; }
  11. public string ContributeName { get; set; }
  12. public string ContributeAmount { get; set; }
  13. public string ContributeUse { get; set; }
  14. public string ContributeContent { get; set; }
  15. public string Remark { get; set; }
  16. public string IsLocked { get; set; }
  17. }
  18. }