Join.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace WZExport.Models
  6. {
  7. public class Join
  8. {
  9. public int Channelid { get; set; }
  10. public string Chnldesc { get; set; }
  11. public int Chnlorder { get; set; }
  12. public int DocID { get; set; }
  13. public string Doctitle { get; set; }
  14. public string Subdoctitle { get; set; }
  15. public string Docauthor { get; set; }
  16. public string Docsourcename { get; set; }
  17. public string Doceditor { get; set; }
  18. public string Dockeywords { get; set; }
  19. public string Docabstract { get; set; }
  20. public string Dochtmlcon { get; set; }
  21. public DateTime? Crtime { get; set; }
  22. public DateTime? Docpubtime { get; set; }
  23. public string Srcfile { get; set; }
  24. public string Fileext { get; set; }
  25. public string fbjg { get; set; }
  26. public void Covert(Join join)
  27. {
  28. Doctitle = join.Doctitle;
  29. Subdoctitle = join.Subdoctitle;
  30. Docauthor = join.Docauthor;
  31. Docsourcename = join.Docsourcename;
  32. Docauthor = join.Docauthor;
  33. Dockeywords = join.Dockeywords;
  34. Docabstract = join.Docabstract;
  35. Dochtmlcon = join.Dochtmlcon;
  36. Crtime = join.Crtime;
  37. Docpubtime = join.Docpubtime;
  38. fbjg = join.fbjg;
  39. }
  40. }
  41. }