Browse Source

Update 人大金仓

pull/40/head
sunkaixuan 1 year ago
parent
commit
25a5730aff
  1. 4
      Src/Asp.NetCore2/SqlSugar/Realization/Kdbndp/SqlBuilder/KdbndpExpressionContext.cs

4
Src/Asp.NetCore2/SqlSugar/Realization/Kdbndp/SqlBuilder/KdbndpExpressionContext.cs

@ -459,6 +459,10 @@ namespace SqlSugar
{
formatString = formatString.Replace("HHmm", "HHmi");
}
if (formatString.Contains("HH"))
{
formatString = formatString.Replace("HH", "hh24");
}
return $" to_char({dateValue},'{formatString}') ";
}
}

Loading…
Cancel
Save