|
|
@ -7841,12 +7841,6 @@ namespace Shentun.Peis.Migrations |
|
|
.HasColumnName("follow_up_content") |
|
|
.HasColumnName("follow_up_content") |
|
|
.HasComment("随访内容"); |
|
|
.HasComment("随访内容"); |
|
|
|
|
|
|
|
|
b.Property<DateTime>("FollowUpDate") |
|
|
|
|
|
.ValueGeneratedOnAdd() |
|
|
|
|
|
.HasColumnType("timestamp without time zone") |
|
|
|
|
|
.HasColumnName("follow_up_date") |
|
|
|
|
|
.HasDefaultValueSql("(date(timezone('UTC-8'::text, now())) - 1)"); |
|
|
|
|
|
|
|
|
|
|
|
b.Property<Guid>("FollowUpId") |
|
|
b.Property<Guid>("FollowUpId") |
|
|
.HasColumnType("uuid") |
|
|
.HasColumnType("uuid") |
|
|
.HasColumnName("follow_up_id"); |
|
|
.HasColumnName("follow_up_id"); |
|
|
@ -7869,6 +7863,12 @@ namespace Shentun.Peis.Migrations |
|
|
.HasColumnType("uuid") |
|
|
.HasColumnType("uuid") |
|
|
.HasColumnName("last_modifier_id"); |
|
|
.HasColumnName("last_modifier_id"); |
|
|
|
|
|
|
|
|
|
|
|
b.Property<DateTime?>("PlanFollowDate") |
|
|
|
|
|
.ValueGeneratedOnAdd() |
|
|
|
|
|
.HasColumnType("timestamp without time zone") |
|
|
|
|
|
.HasColumnName("plan_follow_date") |
|
|
|
|
|
.HasDefaultValueSql("(date(timezone('UTC-8'::text, now())) - 1)"); |
|
|
|
|
|
|
|
|
b.Property<string>("ReplyContent") |
|
|
b.Property<string>("ReplyContent") |
|
|
.HasMaxLength(200) |
|
|
.HasMaxLength(200) |
|
|
.HasColumnType("character varying(200)") |
|
|
.HasColumnType("character varying(200)") |
|
|
@ -10525,10 +10525,10 @@ namespace Shentun.Peis.Migrations |
|
|
.HasColumnName("patient_name") |
|
|
.HasColumnName("patient_name") |
|
|
.HasComment("姓名"); |
|
|
.HasComment("姓名"); |
|
|
|
|
|
|
|
|
b.Property<DateTime?>("SendDate") |
|
|
|
|
|
|
|
|
b.Property<DateTime?>("PlanSendDate") |
|
|
.ValueGeneratedOnAdd() |
|
|
.ValueGeneratedOnAdd() |
|
|
.HasColumnType("timestamp without time zone") |
|
|
.HasColumnType("timestamp without time zone") |
|
|
.HasColumnName("send_date") |
|
|
|
|
|
|
|
|
.HasColumnName("plan_send_date") |
|
|
.HasDefaultValueSql("(date(timezone('UTC-8'::text, now())) - 1)"); |
|
|
.HasDefaultValueSql("(date(timezone('UTC-8'::text, now())) - 1)"); |
|
|
|
|
|
|
|
|
b.Property<string>("SmsTypeId") |
|
|
b.Property<string>("SmsTypeId") |
|
|
|