using System;
|
using System.Collections.Generic;
|
|
#nullable disable
|
|
namespace zhengcaioa.Models
|
{
|
public partial class AdmHoldPhone
|
{
|
public string Id { get; set; }
|
public DateTime InTime { get; set; }
|
public string OrderId { get; set; }
|
public string Phone { get; set; }
|
public string LineType { get; set; }
|
public string Context { get; set; }
|
public string UserId { get; set; }
|
public string Intention { get; set; }
|
public string Handling { get; set; }
|
public string RecStatus { get; set; }
|
public string Creater { get; set; }
|
public DateTime Createtime { get; set; }
|
public string Modifier { get; set; }
|
public DateTime Modifytime { get; set; }
|
}
|
}
|