| | |
| | | using CoreCms.Net.Model.ViewModels.UI; |
| | | using SqlSugar; |
| | | using CoreCms.Net.Model.Entities.baifenbingfa.jon; |
| | | using Org.BouncyCastle.Crypto; |
| | | |
| | | namespace CoreCms.Net.Repository |
| | | { |
| | |
| | | return list; |
| | | } |
| | | |
| | | public async Task<AdminUiCallBack> NvInsertAsync(Job_ApplicantProfile entity) |
| | | { |
| | | var jm = new AdminUiCallBack(); |
| | | |
| | | var bl = await DbClient.InsertNav<Job_ApplicantProfile>(entity).Include(x=>x.FamilyMembers).Include(x=>x.employmentRecords).ExecuteCommandAsync(); |
| | | jm.code = bl ? 0 : 1; |
| | | jm.msg = bl ? GlobalConstVars.InsertSuccess : GlobalConstVars.InsertFailure; |
| | | |
| | | return jm; |
| | | } |
| | | |
| | | #endregion |
| | | |
| | | } |