using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Net6Demo_Api.Entity
{
///
/// 手机号归属地实体
///
[Table("T_Sys_MobileData")]
public class T_Sys_MobileData
{
///主键
[Key, Column(Order = 1)]
public int F_Id { get; set; }
///号码前缀
public string? F_MobileNum { get; set; }
///区号
public string? F_ZipCode { get; set; }
///省市
public string? F_CityDes { get; set; }
///卡说明
public string? F_CardDes { get; set; }
///创建人
public string? F_CreateUser { get; set; }
///创建时间
public DateTime? F_CreateTime { get; set; }
///是否删除(0否1是)
public int? F_IsDelete { get; set; }
///删除人
public string? F_DeleteUser { get; set; }
///删除时间
public DateTime? F_DeleteTime { get; set; }
}
}