using Microsoft.EntityFrameworkCore; using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace IRaCIS.Core.Domain.Models; [Comment("医生计费 - 支付信息表")] [Table("DoctorPayInformation")] public partial class ReviewerPayInformation : BaseFullAuditEntity { [DecimalPrecision(18, 2)] public decimal Additional { get; set; } [StringLength(400)] public string BankCardNumber { get; set; } = null!; public string BankName { get; set; } = null!; public Guid DoctorId { get; set; } public string DoctorNameInBank { get; set; } = null!; [StringLength(400)] public string IDCard { get; set; } = null!; public Guid RankId { get; set; } }