Commit abfc9e07 authored by liudong1993's avatar liudong1993

修复春姐问题

parent 9edcd163
...@@ -63,11 +63,11 @@ namespace Property.Repository ...@@ -63,11 +63,11 @@ namespace Property.Repository
if (dmodel.StartDate.HasValue) if (dmodel.StartDate.HasValue)
{ {
where += $" and nameof(RB_Supplies_Check_Extend.StartDate) >={dmodel.StartDate} "; where += $" and {nameof(RB_Supplies_Check_Extend.StartDate)} >='{dmodel.StartDate}' ";
} }
if (dmodel.EndDate.HasValue) if (dmodel.EndDate.HasValue)
{ {
where += $" and nameof(RB_Supplies_Check_Extend.StartDate) <={dmodel.EndDate} "; where += $" and {nameof(RB_Supplies_Check_Extend.StartDate)} <='{dmodel.EndDate}' ";
} }
if (!string.IsNullOrWhiteSpace(dmodel.Periods)) if (!string.IsNullOrWhiteSpace(dmodel.Periods))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment