1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace WZExport.Models
- {
- public class Join
- {
- public int Channelid { get; set; }
- public string Chnldesc { get; set; }
- public int Chnlorder { get; set; }
- public int DocID { get; set; }
- public string Doctitle { get; set; }
- public string Subdoctitle { get; set; }
- public string Docauthor { get; set; }
- public string Docsourcename { get; set; }
- public string Doceditor { get; set; }
- public string Dockeywords { get; set; }
- public string Docabstract { get; set; }
- public string Dochtmlcon { get; set; }
- public DateTime? Crtime { get; set; }
- public DateTime? Docpubtime { get; set; }
- public string Srcfile { get; set; }
- public string Fileext { get; set; }
- public string fbjg { get; set; }
-
- public void Covert(Join join)
- {
- Doctitle = join.Doctitle;
- Subdoctitle = join.Subdoctitle;
- Docauthor = join.Docauthor;
- Docsourcename = join.Docsourcename;
- Docauthor = join.Docauthor;
- Dockeywords = join.Dockeywords;
- Docabstract = join.Docabstract;
- Dochtmlcon = join.Dochtmlcon;
- Crtime = join.Crtime;
- Docpubtime = join.Docpubtime;
- fbjg = join.fbjg;
- }
- }
- }
|