You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
using Newtonsoft.Json; |
|
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Runtime.Serialization; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace Elight.Entity.APPDto.Lawyer |
|
{ |
|
public class QRUserDto |
|
{ |
|
public string? Id { get; set; } |
|
public string? unitCode { get; set; } |
|
public string? name { get; set; } |
|
public string? phone { get; set; } |
|
public string? cardId { get; set; } |
|
} |
|
public class QRLawyerServiceDto |
|
{ |
|
public string? Id { get; set; } |
|
public string? unitCode { get; set; } |
|
public string? phone { get; set; } |
|
public string? matter { get; set; } |
|
public string? reason { get; set; } |
|
public DateTime? acceptancetime { get; set; } |
|
/// <summary> |
|
/// 访问对象 |
|
/// </summary> |
|
public string? objectstr { get; set; } |
|
public string? reservationId { get; set; } |
|
public string? notes { get; set; } |
|
public int state { get; set; } |
|
public string? createusername { get; set; } |
|
public string? createuserId { get; set; } |
|
} |
|
}
|
|
|