@@ -1,35 +1,26 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace IRaCIS.Core.Domain.Models;
|
||||
|
||||
[Comment("医生计费 - 项目每月调整记录表")]
|
||||
[Table("PaymentAdjustment")]
|
||||
public partial class PaymentAdjustment : BaseFullAuditEntity
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
[DecimalPrecision(18, 4)]
|
||||
public decimal AdjustmentCNY { get; set; }
|
||||
[Table("PaymentAdjustment")]
|
||||
public partial class PaymentAdjustment : BaseFullAuditEntity
|
||||
{
|
||||
public Guid ReviewerId { get; set; }
|
||||
|
||||
[DecimalPrecision(18, 2)]
|
||||
public decimal AdjustmentUSD { get; set; }
|
||||
public DateTime YearMonthDate { get; set; }
|
||||
public string YearMonth { get; set; } = string.Empty;
|
||||
|
||||
[DecimalPrecision(18, 2)]
|
||||
public decimal ExchangeRate { get; set; }
|
||||
[Column(TypeName = "decimal(18,2)")]
|
||||
public decimal AdjustmentUSD { get; set; }
|
||||
|
||||
public bool IsLock { get; set; }
|
||||
[Column(TypeName = "decimal(18,4)")]
|
||||
public decimal AdjustmentCNY { get; set; }
|
||||
|
||||
[StringLength(1000)]
|
||||
public string Note { get; set; } = null!;
|
||||
|
||||
public Guid ReviewerId { get; set; }
|
||||
public Guid TrialId { get; set; } = Guid.Empty;
|
||||
|
||||
public Guid TrialId { get; set; }
|
||||
|
||||
[StringLength(400)]
|
||||
public string YearMonth { get; set; } = null!;
|
||||
|
||||
public DateTime YearMonthDate { get; set; }
|
||||
[Column(TypeName = "decimal(18,2)")]
|
||||
public decimal ExchangeRate { get; set; }
|
||||
public bool IsLock { get; set; } = false;
|
||||
public string Note { get; set; } = string.Empty;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user