using Net6Demo_Api.Util; namespace Net6Demo_Api.Entity { /// /// 列表 /// [Map(typeof(T_Sys_MobileData))] public class MobileDataView { ///主键 public int Id { get; set; } ///号码前缀 public string? MobileNum { get; set; } ///区号 public string? ZipCode { get; set; } ///省市 public string? CityDes { get; set; } ///卡说明 public string? CardDes { get; set; } ///创建人 public string? CreateUser { get; set; } ///创建时间 public DateTime? CreateTime { get; set; } } }