SysSetings.cs 465 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace XdCxRhDW.App.Model
  9. {
  10. [Table("SysSetings")]
  11. public class SysSetings : BaseModel
  12. {
  13. public int HttpPort { get; set; }
  14. public string XLDirectory { get; set; }
  15. public string MapService { get; set; }
  16. }
  17. }