From a77fbf7eeb18b5caf3f0e77fa01791a5a8ae094e Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期三, 05 一月 2022 14:01:53 +0800 Subject: [PATCH] 客户预付款 --- zhengcaioa/Model/zhengcaioaContext.cs | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/zhengcaioa/Model/zhengcaioaContext.cs b/zhengcaioa/Model/zhengcaioaContext.cs index f569e87..4a839aa 100644 --- a/zhengcaioa/Model/zhengcaioaContext.cs +++ b/zhengcaioa/Model/zhengcaioaContext.cs @@ -2628,6 +2628,18 @@ .HasMaxLength(50) .HasColumnName("ywjl") .HasComment("涓氬姟缁忕悊"); + + entity.Property(e => e.Yufukuan) + .HasColumnType("money") + .HasColumnName("yufukuan"); + + entity.Property(e => e.Shouxinedu) + .HasColumnType("money") + .HasColumnName("shouxinedu"); + + entity.Property(e => e.Shenyushouxin) + .HasColumnType("money") + .HasColumnName("shenyushouxin"); }); modelBuilder.Entity<CusFangwenjilu>(entity => -- Gitblit v1.9.1