修改字段

master
he 2022-09-07 11:14:39 +08:00
parent cba8e149b1
commit 01631b2099
3 changed files with 6 additions and 3 deletions

View File

@ -282,7 +282,7 @@ namespace IRaCIS.Application.Services
join rank in _rankPriceRepository.GetAll() on payInfo.RankId equals rank.Id
select new DoctorPayInfo()
{
Code = doctor.ReviewerCode,
Code = doctor.Code,
ChineseName = doctor.ChineseName,
FirstName = doctor.FirstName,
LastName = doctor.LastName,

View File

@ -24,7 +24,7 @@ namespace IRaCIS.Core.Domain.Models
public string Code { get; set; }
public string ReviewerCode { get; set; }
[StringLength(100)]

View File

@ -21,7 +21,7 @@ namespace IRaCIS.Core.Domain.Models
public decimal? AdjustmentMultiple { get; set; }
public DateTime? EnrollTime { get; set; }
public DateTime? OutEnrollTime { get; set; }
public string Memo { get; set; } = string.Empty;
@ -32,6 +32,7 @@ namespace IRaCIS.Core.Domain.Models
public Guid CreateUserId { get; set; }
public DateTime CreateTime { get; set; }
#region 新的计费价格
public int? Training { get; set; }
public int? RefresherTraining { get; set; }
@ -52,6 +53,8 @@ namespace IRaCIS.Core.Domain.Models
public int? Downtime { get; set; }
#endregion
}
}