30 lines
741 B
C#
30 lines
741 B
C#
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; }
|
|
|
|
}
|