| 123456789101112131415161718192021222324252627282930313233 | 
							- using System;
 
- using System.Collections.Generic;
 
- using System.ComponentModel.DataAnnotations;
 
- using System.ComponentModel.DataAnnotations.Schema;
 
- using System.Linq;
 
- using System.Text;
 
- using System.Threading.Tasks;
 
- namespace XdCxRhDW.Repostory.Model
 
- {
 
-     [Table("XlInfo")]
 
-     public class XlInfo : BaseModel<long>
 
-     {
 
-         public int SatCode { get; set; }
 
-         public string SatName { get; set; }
 
-         [Display(Name = "卫星")]
 
-         public string Sat => $"{SatName}({SatCode})";
 
-         [Display(Name = "发布时间(北京)")]
 
-         public DateTime TimeBJ { get; set; }
 
-         [Display(Name = "双行根数1")]
 
-         public string Line1 { get; set; }
 
-         [Display(Name = "双行根数2")]
 
-         public string Line2 { get; set; }
 
-         public string TwoLine => $"{Line1};{Line2}";
 
-     }
 
- }
 
 
  |