同步数据模型和数据库对应关系2
continuous-integration/drone/push Build is passing

This commit is contained in:
hang
2024-09-19 23:45:43 +08:00
parent 19f4385055
commit 42e4fe59ec
73 changed files with 1760 additions and 1934 deletions
+12 -10
View File
@@ -1,15 +1,17 @@
using Microsoft.EntityFrameworkCore;
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models
{
[Table("VolumeReward")]
public partial class VolumeReward : BaseFullAuditEntity
{
[Column(TypeName = "decimal(18,2)")]
public decimal Price { get; set; }
public int Min { get; set; }
public int Max { get; set; }
namespace IRaCIS.Core.Domain.Models;
[Comment("医生计费 - 奖励")]
[Table("VolumeReward")]
public partial class VolumeReward : BaseFullAuditEntity
{
[DecimalPrecision(18, 2)]
public decimal Price { get; set; }
public int Min { get; set; }
public int Max { get; set; }
}
}