SysSetings.cs 548 B

1234567891011121314151617181920
  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 string ServerIp { get; set; }
  14. public int Port { get; set; }
  15. public int HttpPort { get; set; }
  16. public string XLDirectory { get; set; }
  17. public string MapService { get; set; }
  18. }
  19. }