GlobalUsings 清理实体层
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-20 09:20:04 +08:00
parent 0a1ce59670
commit 32931e155c
187 changed files with 7126 additions and 7323 deletions
@@ -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;
}
}