1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using XYY.Core.Standard;
- namespace SMP.Model
- {
- public class Sys_ServiceProvider : BaseEntity
- {
- public string ServiceName { get; set; }
- public bool IsEnable { get; set; }
- public string? Contacts { get; set; }
- public string? Telephone { get; set; }
- }
- }
|