Sys_ServiceProvider.cs 415 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using XYY.Core.Standard;
  7. namespace SMP.Model
  8. {
  9. public class Sys_ServiceProvider : BaseEntity
  10. {
  11. public string ServiceName { get; set; }
  12. public bool IsEnable { get; set; }
  13. public string? Contacts { get; set; }
  14. public string? Telephone { get; set; }
  15. }
  16. }