Commit 3bfa458a by Licx

提取时额外收入写入全部科室;添加dataset

parent 99921a57
......@@ -292,6 +292,9 @@
<member name="P:Performance.EntityModels.PerformanceDbContext.report_performance_person_tags">
<summary> </summary>
</member>
<member name="P:Performance.EntityModels.PerformanceDbContext.report_performance_tags">
<summary> </summary>
</member>
<member name="P:Performance.EntityModels.PerformanceDbContext.report_statistics">
<summary> </summary>
</member>
......
......@@ -208,6 +208,8 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options)
/// <summary> </summary>
public virtual DbSet<report_performance_person_tags> report_performance_person_tags { get; set; }
/// <summary> </summary>
public virtual DbSet<report_performance_tags> report_performance_tags { get; set; }
/// <summary> </summary>
public virtual DbSet<report_statistics> report_statistics { get; set; }
public virtual DbSet<report_statistics_selection> report_statistics_selection { get; set; }
public virtual DbSet<report_statistics_selection_record> report_statistics_selection_record { get; set; }
......
......@@ -241,7 +241,7 @@ public static string NoBlank(this string @string)
public static string GetNo(this string @string)
{
var match = Regex.Match(@string, "^(1.[1-9].[1-9])|(^[1-9]+.[1-9]+)");
var match = Regex.Match(@string, "^(1.[0-9].[1-9])|(^[1-9]+.[1-9]+)");
return match.Value;
}
......
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