123456789101112131415161718 |
- 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.App.Model
- {
- [Table("SysSetings")]
- public class SysSetings : BaseModel
- {
- public int HttpPort { get; set; }
- public string XLDirectory { get; set; }
- public string MapService { get; set; }
- }
- }
|