Browse Source

在新增律师时添加律师姓名

develop-FileUpload-test^2
胡超1 2 years ago
parent
commit
7db888f282
  1. 3
      24Hour/Controllers/Common/LawyerArchivesController.cs
  2. 4
      Dto/RegisterDto.cs
  3. 1
      WebApplication1/Controllers/TwentySystemController.cs

3
24Hour/Controllers/Common/LawyerArchivesController.cs

@ -1040,7 +1040,8 @@ namespace _24Hour.Controllers.Common
}, },
Zbls = "", Zbls = "",
Lxdh = "", Lxdh = "",
Lxdz = "" Lxdz = "",
LawyerName=lawyer.name
}); });
logger.LogInformation(registerinforequest.ConvertToJsonStr()); logger.LogInformation(registerinforequest.ConvertToJsonStr());
if (registerinforequest.IsSucceed == true) if (registerinforequest.IsSucceed == true)

4
Dto/RegisterDto.cs

@ -109,6 +109,10 @@ namespace Dto
/// 律师事务所统一信用代码 /// 律师事务所统一信用代码
/// </summary> /// </summary>
public string DepartMentNameSccCode { get; set; } public string DepartMentNameSccCode { get; set; }
/// <summary>
/// 律师名称
/// </summary>
public string LawyerName { get; set; }
} }
} }

1
WebApplication1/Controllers/TwentySystemController.cs

@ -771,6 +771,7 @@ namespace WebApplication1.Controllers
data.zjhm = dto.ProposerZJHM; data.zjhm = dto.ProposerZJHM;
data.zjlxdm = "9910180300010"; data.zjlxdm = "9910180300010";
data.zjlxmc = "律师执业证"; data.zjlxmc = "律师执业证";
data.sqrxm = dto.LawyerName;
return data; return data;
}; };
ContentDto sqrModel; ContentDto sqrModel;

Loading…
Cancel
Save