2 changed files with 30 additions and 0 deletions
@ -0,0 +1,28 @@
|
||||
using System; |
||||
using System.Collections.Generic; |
||||
using System.Linq; |
||||
using System.Runtime.Serialization; |
||||
using System.Text; |
||||
using System.Threading.Tasks; |
||||
|
||||
namespace Elight.Entity |
||||
{ |
||||
public class App_Sys_AddLawyerInput |
||||
{ |
||||
/// <summary> |
||||
/// 身份证号码 |
||||
/// </summary> |
||||
[DataMember] |
||||
public string? cardId { get; set; } |
||||
/// <summary> |
||||
/// 电话号码 |
||||
/// </summary> |
||||
[DataMember] |
||||
public string? phone { get; set; } |
||||
/// <summary> |
||||
/// 名称 |
||||
/// </summary> |
||||
[DataMember] |
||||
public string? name { get; set; } |
||||
} |
||||
} |
Loading…
Reference in new issue