25 lines
552 B
C#
25 lines
552 B
C#
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Comment("Ò½Éú¼Æ·Ñ - Ö§¸¶ÐÅÏ¢±í")]
|
|
[Table("DoctorPayInformation")]
|
|
public partial class ReviewerPayInformation : BaseFullAuditEntity
|
|
{
|
|
[DecimalPrecision(18, 2)]
|
|
public decimal Additional { get; set; }
|
|
|
|
|
|
public string BankCardNumber { get; set; } = null!;
|
|
|
|
public string BankName { get; set; } = null!;
|
|
|
|
public Guid DoctorId { get; set; }
|
|
|
|
public string DoctorNameInBank { get; set; } = null!;
|
|
|
|
|
|
public string IDCard { get; set; } = null!;
|
|
|
|
public Guid RankId { get; set; }
|
|
|
|
}
|