SysSetings.cs 503 B

123456789101112131415161718192021
  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. }
  18. }