风险辨识
This commit is contained in:
parent
387139244d
commit
c2e7a306b5
File diff suppressed because it is too large
Load Diff
136691
APT.Data.Migrations/Migrations/20251203153918_hmr2025120301.Designer.cs
generated
Normal file
136691
APT.Data.Migrations/Migrations/20251203153918_hmr2025120301.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
244
APT.Data.Migrations/Migrations/20251203153918_hmr2025120301.cs
Normal file
244
APT.Data.Migrations/Migrations/20251203153918_hmr2025120301.cs
Normal file
@ -0,0 +1,244 @@
|
|||||||
|
using System;
|
||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
|
namespace APT.Data.Migrations.Migrations
|
||||||
|
{
|
||||||
|
public partial class hmr2025120301 : Migration
|
||||||
|
{
|
||||||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.DropForeignKey(
|
||||||
|
name: "FK_T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_T_FM_USER_POST_POST_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST");
|
||||||
|
|
||||||
|
migrationBuilder.DropForeignKey(
|
||||||
|
name: "FK_T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_T_FM_USER_POST_POST_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST");
|
||||||
|
|
||||||
|
migrationBuilder.RenameColumn(
|
||||||
|
name: "POST_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST",
|
||||||
|
newName: "DEPARTMENT_ID");
|
||||||
|
|
||||||
|
migrationBuilder.RenameIndex(
|
||||||
|
name: "IX_T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_POST_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST",
|
||||||
|
newName: "IX_T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DEPARTMENT_ID");
|
||||||
|
|
||||||
|
migrationBuilder.RenameColumn(
|
||||||
|
name: "POST_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST",
|
||||||
|
newName: "DEPARTMENT_ID");
|
||||||
|
|
||||||
|
migrationBuilder.RenameIndex(
|
||||||
|
name: "IX_T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_POST_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST",
|
||||||
|
newName: "IX_T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DEPARTMENT_ID");
|
||||||
|
|
||||||
|
migrationBuilder.AddColumn<int>(
|
||||||
|
name: "DEPARTMENT_TYPE",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST",
|
||||||
|
type: "int",
|
||||||
|
nullable: false,
|
||||||
|
defaultValue: 0);
|
||||||
|
|
||||||
|
migrationBuilder.AddColumn<int>(
|
||||||
|
name: "DEPARTMENT_TYPE",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST",
|
||||||
|
type: "int",
|
||||||
|
nullable: false,
|
||||||
|
defaultValue: 0);
|
||||||
|
|
||||||
|
migrationBuilder.CreateTable(
|
||||||
|
name: "T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL",
|
||||||
|
columns: table => new
|
||||||
|
{
|
||||||
|
ID = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
|
||||||
|
RISK_IDENTIFY_DETAIL_RESULT_POST_ID = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
|
||||||
|
POST_ID = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
||||||
|
IS_DELETED = table.Column<bool>(type: "bit", nullable: false),
|
||||||
|
ORG_ID = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
|
||||||
|
ENTITY_ORG_TPYE = table.Column<int>(type: "int", nullable: false),
|
||||||
|
FORM_ID = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
||||||
|
FLOW_STATUS = table.Column<int>(type: "int", nullable: false),
|
||||||
|
FLOW_SEND_STATUS = table.Column<int>(type: "int", nullable: false),
|
||||||
|
FLOW_ID = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
||||||
|
CREATE_TIME = table.Column<DateTime>(type: "datetime2", nullable: true),
|
||||||
|
MODIFY_TIME = table.Column<DateTime>(type: "datetime2", nullable: true),
|
||||||
|
CREATER_ID = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
||||||
|
MODIFIER_ID = table.Column<Guid>(type: "uniqueidentifier", nullable: true)
|
||||||
|
},
|
||||||
|
constraints: table =>
|
||||||
|
{
|
||||||
|
table.PrimaryKey("PK_T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL", x => x.ID);
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "FK_T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL_T_FM_ORGANIZATION_ORG_ID",
|
||||||
|
column: x => x.ORG_ID,
|
||||||
|
principalTable: "T_FM_ORGANIZATION",
|
||||||
|
principalColumn: "ID",
|
||||||
|
onDelete: ReferentialAction.Restrict);
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "FK_T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL_T_FM_USER_POST_POST_ID",
|
||||||
|
column: x => x.POST_ID,
|
||||||
|
principalTable: "T_FM_USER_POST",
|
||||||
|
principalColumn: "ID",
|
||||||
|
onDelete: ReferentialAction.Restrict);
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "FK_T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL_T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_RISK_IDENTIFY_DETAIL_RESULT_POST_ID",
|
||||||
|
column: x => x.RISK_IDENTIFY_DETAIL_RESULT_POST_ID,
|
||||||
|
principalTable: "T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST",
|
||||||
|
principalColumn: "ID",
|
||||||
|
onDelete: ReferentialAction.Restrict);
|
||||||
|
});
|
||||||
|
|
||||||
|
migrationBuilder.CreateTable(
|
||||||
|
name: "T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL",
|
||||||
|
columns: table => new
|
||||||
|
{
|
||||||
|
ID = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
|
||||||
|
IDENTIFY_RESULT_SUMMARY_POST_ID = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
|
||||||
|
POST_ID = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
||||||
|
IS_DELETED = table.Column<bool>(type: "bit", nullable: false),
|
||||||
|
ORG_ID = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
|
||||||
|
ENTITY_ORG_TPYE = table.Column<int>(type: "int", nullable: false),
|
||||||
|
FORM_ID = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
||||||
|
FLOW_STATUS = table.Column<int>(type: "int", nullable: false),
|
||||||
|
FLOW_SEND_STATUS = table.Column<int>(type: "int", nullable: false),
|
||||||
|
FLOW_ID = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
||||||
|
CREATE_TIME = table.Column<DateTime>(type: "datetime2", nullable: true),
|
||||||
|
MODIFY_TIME = table.Column<DateTime>(type: "datetime2", nullable: true),
|
||||||
|
CREATER_ID = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
||||||
|
MODIFIER_ID = table.Column<Guid>(type: "uniqueidentifier", nullable: true)
|
||||||
|
},
|
||||||
|
constraints: table =>
|
||||||
|
{
|
||||||
|
table.PrimaryKey("PK_T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL", x => x.ID);
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "FK_T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL_T_FM_ORGANIZATION_ORG_ID",
|
||||||
|
column: x => x.ORG_ID,
|
||||||
|
principalTable: "T_FM_ORGANIZATION",
|
||||||
|
principalColumn: "ID",
|
||||||
|
onDelete: ReferentialAction.Restrict);
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "FK_T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL_T_FM_USER_POST_POST_ID",
|
||||||
|
column: x => x.POST_ID,
|
||||||
|
principalTable: "T_FM_USER_POST",
|
||||||
|
principalColumn: "ID",
|
||||||
|
onDelete: ReferentialAction.Restrict);
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "FK_T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL_T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_IDENTIFY_RESULT_SUMMARY_POST_ID",
|
||||||
|
column: x => x.IDENTIFY_RESULT_SUMMARY_POST_ID,
|
||||||
|
principalTable: "T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST",
|
||||||
|
principalColumn: "ID",
|
||||||
|
onDelete: ReferentialAction.Restrict);
|
||||||
|
});
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "IX_T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL_ORG_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL",
|
||||||
|
column: "ORG_ID");
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "IX_T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL_POST_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL",
|
||||||
|
column: "POST_ID");
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "IX_T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL_RISK_IDENTIFY_DETAIL_RESULT_POST_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL",
|
||||||
|
column: "RISK_IDENTIFY_DETAIL_RESULT_POST_ID");
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "IX_T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL_IDENTIFY_RESULT_SUMMARY_POST_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL",
|
||||||
|
column: "IDENTIFY_RESULT_SUMMARY_POST_ID");
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "IX_T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL_ORG_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL",
|
||||||
|
column: "ORG_ID");
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "IX_T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL_POST_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL",
|
||||||
|
column: "POST_ID");
|
||||||
|
|
||||||
|
migrationBuilder.AddForeignKey(
|
||||||
|
name: "FK_T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_T_FM_DEPARTMENT_DEPARTMENT_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST",
|
||||||
|
column: "DEPARTMENT_ID",
|
||||||
|
principalTable: "T_FM_DEPARTMENT",
|
||||||
|
principalColumn: "ID",
|
||||||
|
onDelete: ReferentialAction.Restrict);
|
||||||
|
|
||||||
|
migrationBuilder.AddForeignKey(
|
||||||
|
name: "FK_T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_T_FM_DEPARTMENT_DEPARTMENT_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST",
|
||||||
|
column: "DEPARTMENT_ID",
|
||||||
|
principalTable: "T_FM_DEPARTMENT",
|
||||||
|
principalColumn: "ID",
|
||||||
|
onDelete: ReferentialAction.Restrict);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.DropForeignKey(
|
||||||
|
name: "FK_T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_T_FM_DEPARTMENT_DEPARTMENT_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST");
|
||||||
|
|
||||||
|
migrationBuilder.DropForeignKey(
|
||||||
|
name: "FK_T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_T_FM_DEPARTMENT_DEPARTMENT_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL");
|
||||||
|
|
||||||
|
migrationBuilder.DropColumn(
|
||||||
|
name: "DEPARTMENT_TYPE",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST");
|
||||||
|
|
||||||
|
migrationBuilder.DropColumn(
|
||||||
|
name: "DEPARTMENT_TYPE",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST");
|
||||||
|
|
||||||
|
migrationBuilder.RenameColumn(
|
||||||
|
name: "DEPARTMENT_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST",
|
||||||
|
newName: "POST_ID");
|
||||||
|
|
||||||
|
migrationBuilder.RenameIndex(
|
||||||
|
name: "IX_T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DEPARTMENT_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST",
|
||||||
|
newName: "IX_T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_POST_ID");
|
||||||
|
|
||||||
|
migrationBuilder.RenameColumn(
|
||||||
|
name: "DEPARTMENT_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST",
|
||||||
|
newName: "POST_ID");
|
||||||
|
|
||||||
|
migrationBuilder.RenameIndex(
|
||||||
|
name: "IX_T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DEPARTMENT_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST",
|
||||||
|
newName: "IX_T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_POST_ID");
|
||||||
|
|
||||||
|
migrationBuilder.AddForeignKey(
|
||||||
|
name: "FK_T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_T_FM_USER_POST_POST_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST",
|
||||||
|
column: "POST_ID",
|
||||||
|
principalTable: "T_FM_USER_POST",
|
||||||
|
principalColumn: "ID",
|
||||||
|
onDelete: ReferentialAction.Restrict);
|
||||||
|
|
||||||
|
migrationBuilder.AddForeignKey(
|
||||||
|
name: "FK_T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_T_FM_USER_POST_POST_ID",
|
||||||
|
table: "T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST",
|
||||||
|
column: "POST_ID",
|
||||||
|
principalTable: "T_FM_USER_POST",
|
||||||
|
principalColumn: "ID",
|
||||||
|
onDelete: ReferentialAction.Restrict);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -84989,6 +84989,12 @@ namespace APT.Data.Migrations.Migrations
|
|||||||
b.Property<DateTime?>("CREATE_TIME")
|
b.Property<DateTime?>("CREATE_TIME")
|
||||||
.HasColumnType("datetime2");
|
.HasColumnType("datetime2");
|
||||||
|
|
||||||
|
b.Property<Guid?>("DEPARTMENT_ID")
|
||||||
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.Property<int>("DEPARTMENT_TYPE")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
b.Property<int>("ENTITY_ORG_TPYE")
|
b.Property<int>("ENTITY_ORG_TPYE")
|
||||||
.HasColumnType("int");
|
.HasColumnType("int");
|
||||||
|
|
||||||
@ -85020,10 +85026,64 @@ namespace APT.Data.Migrations.Migrations
|
|||||||
.IsRequired()
|
.IsRequired()
|
||||||
.HasColumnType("uniqueidentifier");
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.Property<Guid>("RISK_IDENTIFY_RESULT_DETAIL_ID")
|
||||||
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.HasKey("ID");
|
||||||
|
|
||||||
|
b.HasIndex("DEPARTMENT_ID");
|
||||||
|
|
||||||
|
b.HasIndex("ORG_ID");
|
||||||
|
|
||||||
|
b.HasIndex("RISK_IDENTIFY_RESULT_DETAIL_ID");
|
||||||
|
|
||||||
|
b.ToTable("T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL", b =>
|
||||||
|
{
|
||||||
|
b.Property<Guid>("ID")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.Property<Guid?>("CREATER_ID")
|
||||||
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.Property<DateTime?>("CREATE_TIME")
|
||||||
|
.HasColumnType("datetime2");
|
||||||
|
|
||||||
|
b.Property<int>("ENTITY_ORG_TPYE")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
b.Property<Guid?>("FLOW_ID")
|
||||||
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.Property<int>("FLOW_SEND_STATUS")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
b.Property<int>("FLOW_STATUS")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
b.Property<Guid?>("FORM_ID")
|
||||||
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.Property<bool>("IS_DELETED")
|
||||||
|
.HasColumnType("bit");
|
||||||
|
|
||||||
|
b.Property<Guid?>("MODIFIER_ID")
|
||||||
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.Property<DateTime?>("MODIFY_TIME")
|
||||||
|
.HasColumnType("datetime2");
|
||||||
|
|
||||||
|
b.Property<Guid?>("ORG_ID")
|
||||||
|
.IsRequired()
|
||||||
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
b.Property<Guid?>("POST_ID")
|
b.Property<Guid?>("POST_ID")
|
||||||
.HasColumnType("uniqueidentifier");
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
b.Property<Guid>("RISK_IDENTIFY_RESULT_DETAIL_ID")
|
b.Property<Guid>("RISK_IDENTIFY_DETAIL_RESULT_POST_ID")
|
||||||
.HasColumnType("uniqueidentifier");
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
b.HasKey("ID");
|
b.HasKey("ID");
|
||||||
@ -85032,9 +85092,9 @@ namespace APT.Data.Migrations.Migrations
|
|||||||
|
|
||||||
b.HasIndex("POST_ID");
|
b.HasIndex("POST_ID");
|
||||||
|
|
||||||
b.HasIndex("RISK_IDENTIFY_RESULT_DETAIL_ID");
|
b.HasIndex("RISK_IDENTIFY_DETAIL_RESULT_POST_ID");
|
||||||
|
|
||||||
b.ToTable("T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST");
|
b.ToTable("T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL");
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_FILE", b =>
|
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_FILE", b =>
|
||||||
@ -85898,6 +85958,12 @@ namespace APT.Data.Migrations.Migrations
|
|||||||
b.Property<DateTime?>("CREATE_TIME")
|
b.Property<DateTime?>("CREATE_TIME")
|
||||||
.HasColumnType("datetime2");
|
.HasColumnType("datetime2");
|
||||||
|
|
||||||
|
b.Property<Guid?>("DEPARTMENT_ID")
|
||||||
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.Property<int>("DEPARTMENT_TYPE")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
b.Property<int>("ENTITY_ORG_TPYE")
|
b.Property<int>("ENTITY_ORG_TPYE")
|
||||||
.HasColumnType("int");
|
.HasColumnType("int");
|
||||||
|
|
||||||
@ -85932,18 +85998,72 @@ namespace APT.Data.Migrations.Migrations
|
|||||||
.IsRequired()
|
.IsRequired()
|
||||||
.HasColumnType("uniqueidentifier");
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
b.Property<Guid?>("POST_ID")
|
|
||||||
.HasColumnType("uniqueidentifier");
|
|
||||||
|
|
||||||
b.HasKey("ID");
|
b.HasKey("ID");
|
||||||
|
|
||||||
|
b.HasIndex("DEPARTMENT_ID");
|
||||||
|
|
||||||
b.HasIndex("IDENTIFY_RESULT_SUMMARY_DETAIL_ID");
|
b.HasIndex("IDENTIFY_RESULT_SUMMARY_DETAIL_ID");
|
||||||
|
|
||||||
b.HasIndex("ORG_ID");
|
b.HasIndex("ORG_ID");
|
||||||
|
|
||||||
|
b.ToTable("T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL", b =>
|
||||||
|
{
|
||||||
|
b.Property<Guid>("ID")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.Property<Guid?>("CREATER_ID")
|
||||||
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.Property<DateTime?>("CREATE_TIME")
|
||||||
|
.HasColumnType("datetime2");
|
||||||
|
|
||||||
|
b.Property<int>("ENTITY_ORG_TPYE")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
b.Property<Guid?>("FLOW_ID")
|
||||||
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.Property<int>("FLOW_SEND_STATUS")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
b.Property<int>("FLOW_STATUS")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
b.Property<Guid?>("FORM_ID")
|
||||||
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.Property<Guid>("IDENTIFY_RESULT_SUMMARY_POST_ID")
|
||||||
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.Property<bool>("IS_DELETED")
|
||||||
|
.HasColumnType("bit");
|
||||||
|
|
||||||
|
b.Property<Guid?>("MODIFIER_ID")
|
||||||
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.Property<DateTime?>("MODIFY_TIME")
|
||||||
|
.HasColumnType("datetime2");
|
||||||
|
|
||||||
|
b.Property<Guid?>("ORG_ID")
|
||||||
|
.IsRequired()
|
||||||
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.Property<Guid?>("POST_ID")
|
||||||
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.HasKey("ID");
|
||||||
|
|
||||||
|
b.HasIndex("IDENTIFY_RESULT_SUMMARY_POST_ID");
|
||||||
|
|
||||||
|
b.HasIndex("ORG_ID");
|
||||||
|
|
||||||
b.HasIndex("POST_ID");
|
b.HasIndex("POST_ID");
|
||||||
|
|
||||||
b.ToTable("T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST");
|
b.ToTable("T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL");
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_RESULT_SUMMARY_REQUIRE", b =>
|
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_RESULT_SUMMARY_REQUIRE", b =>
|
||||||
@ -128224,6 +128344,32 @@ namespace APT.Data.Migrations.Migrations
|
|||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST", b =>
|
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("APT.BaseData.Domain.Entities.FM.T_FM_DEPARTMENT", "Nav_Department")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("DEPARTMENT_ID")
|
||||||
|
.OnDelete(DeleteBehavior.Restrict);
|
||||||
|
|
||||||
|
b.HasOne("APT.Infrastructure.Core.T_FM_ORGANIZATION", "Nav_Org")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("ORG_ID")
|
||||||
|
.OnDelete(DeleteBehavior.Restrict)
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
|
b.HasOne("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_RESULT_DETAIL", "Nav_IdentifyDetail")
|
||||||
|
.WithMany("Nav_DetailPosts")
|
||||||
|
.HasForeignKey("RISK_IDENTIFY_RESULT_DETAIL_ID")
|
||||||
|
.OnDelete(DeleteBehavior.Restrict)
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
|
b.Navigation("Nav_Department");
|
||||||
|
|
||||||
|
b.Navigation("Nav_IdentifyDetail");
|
||||||
|
|
||||||
|
b.Navigation("Nav_Org");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL", b =>
|
||||||
{
|
{
|
||||||
b.HasOne("APT.Infrastructure.Core.T_FM_ORGANIZATION", "Nav_Org")
|
b.HasOne("APT.Infrastructure.Core.T_FM_ORGANIZATION", "Nav_Org")
|
||||||
.WithMany()
|
.WithMany()
|
||||||
@ -128236,13 +128382,13 @@ namespace APT.Data.Migrations.Migrations
|
|||||||
.HasForeignKey("POST_ID")
|
.HasForeignKey("POST_ID")
|
||||||
.OnDelete(DeleteBehavior.Restrict);
|
.OnDelete(DeleteBehavior.Restrict);
|
||||||
|
|
||||||
b.HasOne("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_RESULT_DETAIL", "Nav_IdentifyDetail")
|
b.HasOne("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST", "Nav_DetailPost")
|
||||||
.WithMany("Nav_DetailPosts")
|
.WithMany("Nav_ResultPostDets")
|
||||||
.HasForeignKey("RISK_IDENTIFY_RESULT_DETAIL_ID")
|
.HasForeignKey("RISK_IDENTIFY_DETAIL_RESULT_POST_ID")
|
||||||
.OnDelete(DeleteBehavior.Restrict)
|
.OnDelete(DeleteBehavior.Restrict)
|
||||||
.IsRequired();
|
.IsRequired();
|
||||||
|
|
||||||
b.Navigation("Nav_IdentifyDetail");
|
b.Navigation("Nav_DetailPost");
|
||||||
|
|
||||||
b.Navigation("Nav_Org");
|
b.Navigation("Nav_Org");
|
||||||
|
|
||||||
@ -128622,6 +128768,11 @@ namespace APT.Data.Migrations.Migrations
|
|||||||
|
|
||||||
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST", b =>
|
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST", b =>
|
||||||
{
|
{
|
||||||
|
b.HasOne("APT.BaseData.Domain.Entities.FM.T_FM_DEPARTMENT", "Nav_Department")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("DEPARTMENT_ID")
|
||||||
|
.OnDelete(DeleteBehavior.Restrict);
|
||||||
|
|
||||||
b.HasOne("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_RESULT_SUMMARY_DETAIL", "Nav_SummaryDetail")
|
b.HasOne("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_RESULT_SUMMARY_DETAIL", "Nav_SummaryDetail")
|
||||||
.WithMany("Nav_DetailPosts")
|
.WithMany("Nav_DetailPosts")
|
||||||
.HasForeignKey("IDENTIFY_RESULT_SUMMARY_DETAIL_ID")
|
.HasForeignKey("IDENTIFY_RESULT_SUMMARY_DETAIL_ID")
|
||||||
@ -128634,6 +128785,27 @@ namespace APT.Data.Migrations.Migrations
|
|||||||
.OnDelete(DeleteBehavior.Restrict)
|
.OnDelete(DeleteBehavior.Restrict)
|
||||||
.IsRequired();
|
.IsRequired();
|
||||||
|
|
||||||
|
b.Navigation("Nav_Department");
|
||||||
|
|
||||||
|
b.Navigation("Nav_Org");
|
||||||
|
|
||||||
|
b.Navigation("Nav_SummaryDetail");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST", "Nav_SummaryPost")
|
||||||
|
.WithMany("Nav_SumPostDets")
|
||||||
|
.HasForeignKey("IDENTIFY_RESULT_SUMMARY_POST_ID")
|
||||||
|
.OnDelete(DeleteBehavior.Restrict)
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
|
b.HasOne("APT.Infrastructure.Core.T_FM_ORGANIZATION", "Nav_Org")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("ORG_ID")
|
||||||
|
.OnDelete(DeleteBehavior.Restrict)
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
b.HasOne("APT.BaseData.Domain.Entities.FM.T_FM_USER_POST", "Nav_Post")
|
b.HasOne("APT.BaseData.Domain.Entities.FM.T_FM_USER_POST", "Nav_Post")
|
||||||
.WithMany()
|
.WithMany()
|
||||||
.HasForeignKey("POST_ID")
|
.HasForeignKey("POST_ID")
|
||||||
@ -128643,7 +128815,7 @@ namespace APT.Data.Migrations.Migrations
|
|||||||
|
|
||||||
b.Navigation("Nav_Post");
|
b.Navigation("Nav_Post");
|
||||||
|
|
||||||
b.Navigation("Nav_SummaryDetail");
|
b.Navigation("Nav_SummaryPost");
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_RESULT_SUMMARY_REQUIRE", b =>
|
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_RESULT_SUMMARY_REQUIRE", b =>
|
||||||
@ -136064,6 +136236,11 @@ namespace APT.Data.Migrations.Migrations
|
|||||||
b.Navigation("Nav_DetailMeasures");
|
b.Navigation("Nav_DetailMeasures");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST", b =>
|
||||||
|
{
|
||||||
|
b.Navigation("Nav_ResultPostDets");
|
||||||
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_RESULT", b =>
|
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_RESULT", b =>
|
||||||
{
|
{
|
||||||
b.Navigation("Nav_Details");
|
b.Navigation("Nav_Details");
|
||||||
@ -136100,6 +136277,11 @@ namespace APT.Data.Migrations.Migrations
|
|||||||
b.Navigation("Nav_DetailPosts");
|
b.Navigation("Nav_DetailPosts");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST", b =>
|
||||||
|
{
|
||||||
|
b.Navigation("Nav_SumPostDets");
|
||||||
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_SECURITY_INSPECTION_NOTICE", b =>
|
modelBuilder.Entity("APT.MS.Domain.Entities.SK.T_SK_SECURITY_INSPECTION_NOTICE", b =>
|
||||||
{
|
{
|
||||||
b.Navigation("Nav_CheckNoticeDetails");
|
b.Navigation("Nav_CheckNoticeDetails");
|
||||||
|
|||||||
@ -14686,6 +14686,17 @@ builder.Property(t => t.EMERGENCY).HasMaxLength(500);
|
|||||||
{
|
{
|
||||||
base.Configure(builder);
|
base.Configure(builder);
|
||||||
builder.HasOne(t => t.Nav_IdentifyDetail).WithMany(t=>t.Nav_DetailPosts).HasForeignKey(t => t.RISK_IDENTIFY_RESULT_DETAIL_ID).OnDelete(DeleteBehavior.Restrict);
|
builder.HasOne(t => t.Nav_IdentifyDetail).WithMany(t=>t.Nav_DetailPosts).HasForeignKey(t => t.RISK_IDENTIFY_RESULT_DETAIL_ID).OnDelete(DeleteBehavior.Restrict);
|
||||||
|
builder.HasOne(t => t.Nav_Department).WithMany().HasForeignKey(t => t.DEPARTMENT_ID).OnDelete(DeleteBehavior.Restrict);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
#region RiskIdentifyDetailResultPostDetail
|
||||||
|
public partial class SKRiskIdentifyDetailResultPostDetailMap :APTEntityBaseMap<T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL>
|
||||||
|
{
|
||||||
|
public override void Configure(EntityTypeBuilder<T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL> builder)
|
||||||
|
{
|
||||||
|
base.Configure(builder);
|
||||||
|
builder.HasOne(t => t.Nav_DetailPost).WithMany(t=>t.Nav_ResultPostDets).HasForeignKey(t => t.RISK_IDENTIFY_DETAIL_RESULT_POST_ID).OnDelete(DeleteBehavior.Restrict);
|
||||||
builder.HasOne(t => t.Nav_Post).WithMany().HasForeignKey(t => t.POST_ID).OnDelete(DeleteBehavior.Restrict);
|
builder.HasOne(t => t.Nav_Post).WithMany().HasForeignKey(t => t.POST_ID).OnDelete(DeleteBehavior.Restrict);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -14858,6 +14869,17 @@ builder.Property(t => t.EMERGENCY).HasMaxLength(500);
|
|||||||
{
|
{
|
||||||
base.Configure(builder);
|
base.Configure(builder);
|
||||||
builder.HasOne(t => t.Nav_SummaryDetail).WithMany(t=>t.Nav_DetailPosts).HasForeignKey(t => t.IDENTIFY_RESULT_SUMMARY_DETAIL_ID).OnDelete(DeleteBehavior.Restrict);
|
builder.HasOne(t => t.Nav_SummaryDetail).WithMany(t=>t.Nav_DetailPosts).HasForeignKey(t => t.IDENTIFY_RESULT_SUMMARY_DETAIL_ID).OnDelete(DeleteBehavior.Restrict);
|
||||||
|
builder.HasOne(t => t.Nav_Department).WithMany().HasForeignKey(t => t.DEPARTMENT_ID).OnDelete(DeleteBehavior.Restrict);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
#region RiskIdentifyResultSummaryPostDetail
|
||||||
|
public partial class SKRiskIdentifyResultSummaryPostDetailMap :APTEntityBaseMap<T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL>
|
||||||
|
{
|
||||||
|
public override void Configure(EntityTypeBuilder<T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL> builder)
|
||||||
|
{
|
||||||
|
base.Configure(builder);
|
||||||
|
builder.HasOne(t => t.Nav_SummaryPost).WithMany(t=>t.Nav_SumPostDets).HasForeignKey(t => t.IDENTIFY_RESULT_SUMMARY_POST_ID).OnDelete(DeleteBehavior.Restrict);
|
||||||
builder.HasOne(t => t.Nav_Post).WithMany().HasForeignKey(t => t.POST_ID).OnDelete(DeleteBehavior.Restrict);
|
builder.HasOne(t => t.Nav_Post).WithMany().HasForeignKey(t => t.POST_ID).OnDelete(DeleteBehavior.Restrict);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,5 +1,7 @@
|
|||||||
using APT.BaseData.Domain.Entities.FM;
|
using APT.BaseData.Domain.Entities.FM;
|
||||||
|
using APT.BaseData.Domain.Enums;
|
||||||
using APT.Infrastructure.Core;
|
using APT.Infrastructure.Core;
|
||||||
|
using APT.MS.Domain.Enums.SK;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
@ -23,15 +25,24 @@ namespace APT.MS.Domain.Entities.SK
|
|||||||
[Description("导航:安全风险辨识结果明细")]
|
[Description("导航:安全风险辨识结果明细")]
|
||||||
public virtual T_SK_RISK_IDENTIFY_RESULT_DETAIL Nav_IdentifyDetail { get; set; }
|
public virtual T_SK_RISK_IDENTIFY_RESULT_DETAIL Nav_IdentifyDetail { get; set; }
|
||||||
|
|
||||||
|
|
||||||
[Description("序号")]
|
[Description("序号")]
|
||||||
public int? NUM { get; set; }
|
public int? NUM { get; set; }
|
||||||
|
|
||||||
[Description("岗位")]
|
[Description("辨识层级")]
|
||||||
[DataFieldForeignKey("Nav_Post")]
|
[EnumName("SKDepartmentTypeEnum")]
|
||||||
public Guid? POST_ID { get; set; }
|
public SKDepartmentTypeEnum DEPARTMENT_TYPE { get; set; }
|
||||||
|
|
||||||
|
[Description("部门")]
|
||||||
|
[DataFieldForeignKey("Nav_Department")]
|
||||||
|
public Guid? DEPARTMENT_ID { get; set; }
|
||||||
|
|
||||||
|
[Description("导航属性:部门")]
|
||||||
|
public virtual T_FM_DEPARTMENT Nav_Department { get; set; }
|
||||||
|
|
||||||
|
[Description("辨识岗位")]
|
||||||
|
[FormFieldEdit]
|
||||||
|
public ICollection<T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL> Nav_ResultPostDets { get; set; }
|
||||||
|
|
||||||
|
|
||||||
[Description("导航属性:岗位")]
|
|
||||||
public virtual T_FM_USER_POST Nav_Post { get; set; }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,33 @@
|
|||||||
|
using APT.BaseData.Domain.Entities.FM;
|
||||||
|
using APT.Infrastructure.Core;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace APT.MS.Domain.Entities.SK
|
||||||
|
{
|
||||||
|
[Description("辨识岗位")]
|
||||||
|
public class T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL : MesEntityBase
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 安全风险辨识结果明细
|
||||||
|
/// </summary>
|
||||||
|
[Description("安全风险辨识结果明细")]
|
||||||
|
[DataFieldForeignKey("Nav_DetailPost", "Nav_ResultPostDets")]
|
||||||
|
public Guid RISK_IDENTIFY_DETAIL_RESULT_POST_ID { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 导航:安全风险辨识结果明细
|
||||||
|
/// </summary>
|
||||||
|
[Description("导航:安全风险辨识结果明细")]
|
||||||
|
public virtual T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST Nav_DetailPost { get; set; }
|
||||||
|
|
||||||
|
[Description("岗位")]
|
||||||
|
[DataFieldForeignKey("Nav_Post")]
|
||||||
|
public Guid? POST_ID { get; set; }
|
||||||
|
|
||||||
|
[Description("导航属性:岗位")]
|
||||||
|
public virtual T_FM_USER_POST Nav_Post { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,5 +1,6 @@
|
|||||||
using APT.BaseData.Domain.Entities.FM;
|
using APT.BaseData.Domain.Entities.FM;
|
||||||
using APT.Infrastructure.Core;
|
using APT.Infrastructure.Core;
|
||||||
|
using APT.MS.Domain.Enums.SK;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
@ -26,11 +27,21 @@ namespace APT.MS.Domain.Entities.SK
|
|||||||
[Description("序号")]
|
[Description("序号")]
|
||||||
public int? NUM { get; set; }
|
public int? NUM { get; set; }
|
||||||
|
|
||||||
[Description("岗位")]
|
[Description("辨识层级")]
|
||||||
[DataFieldForeignKey("Nav_Post")]
|
[EnumName("SKDepartmentTypeEnum")]
|
||||||
public Guid? POST_ID { get; set; }
|
public SKDepartmentTypeEnum DEPARTMENT_TYPE { get; set; }
|
||||||
|
|
||||||
|
[Description("部门")]
|
||||||
|
[DataFieldForeignKey("Nav_Department")]
|
||||||
|
public Guid? DEPARTMENT_ID { get; set; }
|
||||||
|
|
||||||
|
[Description("导航属性:部门")]
|
||||||
|
public virtual T_FM_DEPARTMENT Nav_Department { get; set; }
|
||||||
|
|
||||||
|
[Description("辨识岗位")]
|
||||||
|
[FormFieldEdit]
|
||||||
|
public ICollection<T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL> Nav_SumPostDets { get; set; }
|
||||||
|
|
||||||
|
|
||||||
[Description("导航属性:岗位")]
|
|
||||||
public virtual T_FM_USER_POST Nav_Post { get; set; }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,33 @@
|
|||||||
|
using APT.BaseData.Domain.Entities.FM;
|
||||||
|
using APT.Infrastructure.Core;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace APT.MS.Domain.Entities.SK
|
||||||
|
{
|
||||||
|
[Description("辨识岗位")]
|
||||||
|
public class T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST_DETAIL : MesEntityBase
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 安全风险辨识结果汇总明细
|
||||||
|
/// </summary>
|
||||||
|
[Description("安全风险辨识结果汇总明细")]
|
||||||
|
[DataFieldForeignKey("Nav_SummaryPost", "Nav_SumPostDets")]
|
||||||
|
public Guid IDENTIFY_RESULT_SUMMARY_POST_ID { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 导航:安全风险辨识结果汇总明细
|
||||||
|
/// </summary>
|
||||||
|
[Description("导航:安全风险辨识结果汇总明细")]
|
||||||
|
public virtual T_SK_RISK_IDENTIFY_RESULT_SUMMARY_POST Nav_SummaryPost { get; set; }
|
||||||
|
|
||||||
|
[Description("岗位")]
|
||||||
|
[DataFieldForeignKey("Nav_Post")]
|
||||||
|
public Guid? POST_ID { get; set; }
|
||||||
|
|
||||||
|
[Description("导航属性:岗位")]
|
||||||
|
public virtual T_FM_USER_POST Nav_Post { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// T4模板文件:基础接口类
|
// T4模板文件:基础接口类
|
||||||
// 此代码由T4模板自动生成
|
// 此代码由T4模板自动生成
|
||||||
@ -16,6 +22,7 @@ using APT.BaseData.Domain.ApiModel.PF;
|
|||||||
namespace APT.BD.WebApi.Controllers.Api
|
namespace APT.BD.WebApi.Controllers.Api
|
||||||
{
|
{
|
||||||
using APT.BaseData.Domain.Entities.BD;
|
using APT.BaseData.Domain.Entities.BD;
|
||||||
|
|
||||||
#region Hmi-HMI资源表维护
|
#region Hmi-HMI资源表维护
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// HMI资源表维护
|
/// HMI资源表维护
|
||||||
@ -123,8 +130,10 @@ namespace APT.BD.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Picture-图片资源
|
#region Picture-图片资源
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 图片资源
|
/// 图片资源
|
||||||
@ -232,8 +241,10 @@ namespace APT.BD.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region PictureFile-资源图片文件
|
#region PictureFile-资源图片文件
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 资源图片文件
|
/// 资源图片文件
|
||||||
@ -341,8 +352,10 @@ namespace APT.BD.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Place-区域表
|
#region Place-区域表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 区域表
|
/// 区域表
|
||||||
@ -449,7 +462,8 @@ namespace APT.BD.WebApi.Controllers.Api
|
|||||||
{
|
{
|
||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
/// <summary>
|
|
||||||
|
/// <summary>
|
||||||
/// 获得树形实体数据
|
/// 获得树形实体数据
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="filter"></param>
|
/// <param name="filter"></param>
|
||||||
@ -460,8 +474,10 @@ namespace APT.BD.WebApi.Controllers.Api
|
|||||||
return WitTreeOrderEntities(null, filter);
|
return WitTreeOrderEntities(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ServerInfo-服务器信息表
|
#region ServerInfo-服务器信息表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 服务器信息表
|
/// 服务器信息表
|
||||||
@ -569,8 +585,10 @@ namespace APT.BD.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SystemInfo-系统信息表
|
#region SystemInfo-系统信息表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统信息表
|
/// 系统信息表
|
||||||
@ -678,8 +696,10 @@ namespace APT.BD.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region WordTemplate-WORD模板维护
|
#region WordTemplate-WORD模板维护
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// WORD模板维护
|
/// WORD模板维护
|
||||||
@ -787,6 +807,8 @@ namespace APT.BD.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// T4模板文件:基础接口类
|
// T4模板文件:基础接口类
|
||||||
// 此代码由T4模板自动生成
|
// 此代码由T4模板自动生成
|
||||||
@ -16,6 +22,7 @@ using APT.BaseData.Domain.ApiModel.PF;
|
|||||||
namespace APT.BS.WebApi.Controllers.Api
|
namespace APT.BS.WebApi.Controllers.Api
|
||||||
{
|
{
|
||||||
using APT.MS.Domain.Entities.BS;
|
using APT.MS.Domain.Entities.BS;
|
||||||
|
|
||||||
#region CheckContent-检查内容表
|
#region CheckContent-检查内容表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查内容表
|
/// 检查内容表
|
||||||
@ -123,8 +130,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CheckContents-检查内容
|
#region CheckContents-检查内容
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查内容
|
/// 检查内容
|
||||||
@ -232,8 +241,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CheckContentCheckType-检查类型
|
#region CheckContentCheckType-检查类型
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查类型
|
/// 检查类型
|
||||||
@ -341,8 +352,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CheckContentCheckTypeLevel-检查内容检查类型子表(关联层级)
|
#region CheckContentCheckTypeLevel-检查内容检查类型子表(关联层级)
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查内容检查类型子表(关联层级)
|
/// 检查内容检查类型子表(关联层级)
|
||||||
@ -450,8 +463,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CheckContentHmRiskArea-检查区域
|
#region CheckContentHmRiskArea-检查区域
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查区域
|
/// 检查区域
|
||||||
@ -559,8 +574,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CheckMain-安全检查库
|
#region CheckMain-安全检查库
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 安全检查库
|
/// 安全检查库
|
||||||
@ -668,8 +685,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CheckContentMainDepartment-安全检查库责任部门
|
#region CheckContentMainDepartment-安全检查库责任部门
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 安全检查库责任部门
|
/// 安全检查库责任部门
|
||||||
@ -777,8 +796,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CheckContentQuestion-检查问题
|
#region CheckContentQuestion-检查问题
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查问题
|
/// 检查问题
|
||||||
@ -886,8 +907,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CheckMainLaw-检查库法规
|
#region CheckMainLaw-检查库法规
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查库法规
|
/// 检查库法规
|
||||||
@ -995,8 +1018,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CheckProject-检查项目
|
#region CheckProject-检查项目
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查项目
|
/// 检查项目
|
||||||
@ -1104,8 +1129,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CheckProjectCategory-检查项目分类表
|
#region CheckProjectCategory-检查项目分类表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查项目分类表
|
/// 检查项目分类表
|
||||||
@ -1213,8 +1240,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CheckProjectCategoryChecktype-检查项目分类_检查类型
|
#region CheckProjectCategoryChecktype-检查项目分类_检查类型
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查项目分类_检查类型
|
/// 检查项目分类_检查类型
|
||||||
@ -1322,8 +1351,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CheckProjectCategoryObject-检查项目分类_检查区域
|
#region CheckProjectCategoryObject-检查项目分类_检查区域
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查项目分类_检查区域
|
/// 检查项目分类_检查区域
|
||||||
@ -1431,8 +1462,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CheckProjectProjectCategory-检查项目分类
|
#region CheckProjectProjectCategory-检查项目分类
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查项目分类
|
/// 检查项目分类
|
||||||
@ -1540,8 +1573,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CheckQuestion-检查问题
|
#region CheckQuestion-检查问题
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查问题
|
/// 检查问题
|
||||||
@ -1649,8 +1684,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CheckType-检查类型表
|
#region CheckType-检查类型表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查类型表
|
/// 检查类型表
|
||||||
@ -1757,7 +1794,8 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
{
|
{
|
||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
/// <summary>
|
|
||||||
|
/// <summary>
|
||||||
/// 获得树形实体数据
|
/// 获得树形实体数据
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="filter"></param>
|
/// <param name="filter"></param>
|
||||||
@ -1768,8 +1806,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitTreeOrderEntities(null, filter);
|
return WitTreeOrderEntities(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CheckTypeLevel-检查层级
|
#region CheckTypeLevel-检查层级
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查层级
|
/// 检查层级
|
||||||
@ -1877,8 +1917,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CheckTypeMinetype-检查类型生产单元
|
#region CheckTypeMinetype-检查类型生产单元
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查类型生产单元
|
/// 检查类型生产单元
|
||||||
@ -1986,8 +2028,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region DepartmentAreaobject-部门范围
|
#region DepartmentAreaobject-部门范围
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 部门范围
|
/// 部门范围
|
||||||
@ -2095,8 +2139,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region OperateLog-操作日志
|
#region OperateLog-操作日志
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 操作日志
|
/// 操作日志
|
||||||
@ -2204,8 +2250,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region PlanSet-制定任务
|
#region PlanSet-制定任务
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 制定任务
|
/// 制定任务
|
||||||
@ -2313,8 +2361,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region PlanSetArea-制定任务区域
|
#region PlanSetArea-制定任务区域
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 制定任务区域
|
/// 制定任务区域
|
||||||
@ -2422,8 +2472,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region PlanSetDepartmentOut-制定任务排除组织
|
#region PlanSetDepartmentOut-制定任务排除组织
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 制定任务排除组织
|
/// 制定任务排除组织
|
||||||
@ -2531,8 +2583,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region PlanSetDepObject-制定任务部门触发范围
|
#region PlanSetDepObject-制定任务部门触发范围
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 制定任务部门触发范围
|
/// 制定任务部门触发范围
|
||||||
@ -2640,8 +2694,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region PlanSetObject-制定任务触发范围
|
#region PlanSetObject-制定任务触发范围
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 制定任务触发范围
|
/// 制定任务触发范围
|
||||||
@ -2749,8 +2805,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskCategory-隐患类别
|
#region RiskCategory-隐患类别
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 隐患类别
|
/// 隐患类别
|
||||||
@ -2858,8 +2916,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskLevelDelayDays-隐患等级最长延期整改天数
|
#region RiskLevelDelayDays-隐患等级最长延期整改天数
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 隐患等级最长延期整改天数
|
/// 隐患等级最长延期整改天数
|
||||||
@ -2967,8 +3027,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskReason-隐患原因表
|
#region RiskReason-隐患原因表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 隐患原因表
|
/// 隐患原因表
|
||||||
@ -3076,8 +3138,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskSubmit-隐患上报表
|
#region RiskSubmit-隐患上报表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 隐患上报表
|
/// 隐患上报表
|
||||||
@ -3185,8 +3249,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskSubmitContent-隐患上报明细
|
#region RiskSubmitContent-隐患上报明细
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 隐患上报明细
|
/// 隐患上报明细
|
||||||
@ -3294,8 +3360,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskSubmitContentBack-隐患上报明细退回
|
#region RiskSubmitContentBack-隐患上报明细退回
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 隐患上报明细退回
|
/// 隐患上报明细退回
|
||||||
@ -3403,8 +3471,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskSubmitContentDeal-隐患整改记录
|
#region RiskSubmitContentDeal-隐患整改记录
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 隐患整改记录
|
/// 隐患整改记录
|
||||||
@ -3512,8 +3582,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskSubmitContentDealAfterFile-检查任务附件表
|
#region RiskSubmitContentDealAfterFile-检查任务附件表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查任务附件表
|
/// 检查任务附件表
|
||||||
@ -3621,8 +3693,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskSubmitContentDealFile-检查任务附件表
|
#region RiskSubmitContentDealFile-检查任务附件表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查任务附件表
|
/// 检查任务附件表
|
||||||
@ -3730,8 +3804,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskSubmitContentDealUserchecksign-隐患整改验收人签名
|
#region RiskSubmitContentDealUserchecksign-隐患整改验收人签名
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 隐患整改验收人签名
|
/// 隐患整改验收人签名
|
||||||
@ -3839,8 +3915,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskSubmitContentDealUsersign-隐患整改责任人签名
|
#region RiskSubmitContentDealUsersign-隐患整改责任人签名
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 隐患整改责任人签名
|
/// 隐患整改责任人签名
|
||||||
@ -3948,8 +4026,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskSubmitContentFile-检查任务明细附件表
|
#region RiskSubmitContentFile-检查任务明细附件表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查任务明细附件表
|
/// 检查任务明细附件表
|
||||||
@ -4057,8 +4137,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskSubmitContentReason-隐患上报明细原因
|
#region RiskSubmitContentReason-隐患上报明细原因
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 隐患上报明细原因
|
/// 隐患上报明细原因
|
||||||
@ -4166,8 +4248,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskSubmitContentTemp-隐患上报详情待入库
|
#region RiskSubmitContentTemp-隐患上报详情待入库
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 隐患上报详情待入库
|
/// 隐患上报详情待入库
|
||||||
@ -4275,8 +4359,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskSubmitDelayApply-延期整改申请
|
#region RiskSubmitDelayApply-延期整改申请
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 延期整改申请
|
/// 延期整改申请
|
||||||
@ -4384,8 +4470,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskSubmitDelayApplyDetail-延期整改申请详情
|
#region RiskSubmitDelayApplyDetail-延期整改申请详情
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 延期整改申请详情
|
/// 延期整改申请详情
|
||||||
@ -4493,8 +4581,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskSubmitFile-检查任务附件表
|
#region RiskSubmitFile-检查任务附件表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查任务附件表
|
/// 检查任务附件表
|
||||||
@ -4602,8 +4692,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskSubmitNotice-隐患通知
|
#region RiskSubmitNotice-隐患通知
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 隐患通知
|
/// 隐患通知
|
||||||
@ -4711,8 +4803,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskSubmitNoticePerson-隐患通知
|
#region RiskSubmitNoticePerson-隐患通知
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 隐患通知
|
/// 隐患通知
|
||||||
@ -4820,8 +4914,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskTpm-TPM对接数据
|
#region RiskTpm-TPM对接数据
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// TPM对接数据
|
/// TPM对接数据
|
||||||
@ -4929,8 +5025,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SafeCheck-安全检查
|
#region SafeCheck-安全检查
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 安全检查
|
/// 安全检查
|
||||||
@ -5038,8 +5136,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SafeCheckDetail-检查明细
|
#region SafeCheckDetail-检查明细
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查明细
|
/// 检查明细
|
||||||
@ -5147,8 +5247,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SafeCheckDetailFile-检查任务明细附件表
|
#region SafeCheckDetailFile-检查任务明细附件表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查任务明细附件表
|
/// 检查任务明细附件表
|
||||||
@ -5256,8 +5358,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SafeCheckDetailLaw-检查依据
|
#region SafeCheckDetailLaw-检查依据
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查依据
|
/// 检查依据
|
||||||
@ -5365,8 +5469,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SafeCheckDetailQuestion-检查明细问题
|
#region SafeCheckDetailQuestion-检查明细问题
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查明细问题
|
/// 检查明细问题
|
||||||
@ -5474,8 +5580,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SafeCheckDetailReason-检查明细隐患原因
|
#region SafeCheckDetailReason-检查明细隐患原因
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查明细隐患原因
|
/// 检查明细隐患原因
|
||||||
@ -5583,8 +5691,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SafeCheckDetailReject-检查明细退回
|
#region SafeCheckDetailReject-检查明细退回
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查明细退回
|
/// 检查明细退回
|
||||||
@ -5692,8 +5802,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SafeCheckDetailRejectFile-检查明细退回附件
|
#region SafeCheckDetailRejectFile-检查明细退回附件
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查明细退回附件
|
/// 检查明细退回附件
|
||||||
@ -5801,8 +5913,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SafeCheckDetailUser-检查明细人员
|
#region SafeCheckDetailUser-检查明细人员
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查明细人员
|
/// 检查明细人员
|
||||||
@ -5910,8 +6024,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SafeCheckFile-安全检查文件
|
#region SafeCheckFile-安全检查文件
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 安全检查文件
|
/// 安全检查文件
|
||||||
@ -6019,8 +6135,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SafeCheckProject-安全检查文件
|
#region SafeCheckProject-安全检查文件
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 安全检查文件
|
/// 安全检查文件
|
||||||
@ -6128,8 +6246,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SafeCheckProjectCategory-安全检查文件
|
#region SafeCheckProjectCategory-安全检查文件
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 安全检查文件
|
/// 安全检查文件
|
||||||
@ -6237,8 +6357,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SafeCheckRecord-检查记录确认
|
#region SafeCheckRecord-检查记录确认
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查记录确认
|
/// 检查记录确认
|
||||||
@ -6346,8 +6468,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SafeCheckRecordDetail-检查记录确认明细
|
#region SafeCheckRecordDetail-检查记录确认明细
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查记录确认明细
|
/// 检查记录确认明细
|
||||||
@ -6455,8 +6579,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SafeCheckRiskArea-检查区域
|
#region SafeCheckRiskArea-检查区域
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查区域
|
/// 检查区域
|
||||||
@ -6564,8 +6690,10 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SafeCheckUsersign-检查签名
|
#region SafeCheckUsersign-检查签名
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查签名
|
/// 检查签名
|
||||||
@ -6673,6 +6801,8 @@ namespace APT.BS.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// T4模板文件:基础接口类
|
// T4模板文件:基础接口类
|
||||||
// 此代码由T4模板自动生成
|
// 此代码由T4模板自动生成
|
||||||
@ -17,6 +23,7 @@ namespace APT.FM.WebApi.Controllers.Api
|
|||||||
{
|
{
|
||||||
using APT.BaseData.Domain.Entities.FM;
|
using APT.BaseData.Domain.Entities.FM;
|
||||||
using APT.BaseData.Domain.Entities;
|
using APT.BaseData.Domain.Entities;
|
||||||
|
|
||||||
#region Api-API
|
#region Api-API
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// API
|
/// API
|
||||||
@ -124,8 +131,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region BaseAdd-企业位置信息
|
#region BaseAdd-企业位置信息
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 企业位置信息
|
/// 企业位置信息
|
||||||
@ -233,8 +242,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region BaseEnergy-企业能耗配置信息
|
#region BaseEnergy-企业能耗配置信息
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 企业能耗配置信息
|
/// 企业能耗配置信息
|
||||||
@ -342,8 +353,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region BaseInfo-企业基本信息
|
#region BaseInfo-企业基本信息
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 企业基本信息
|
/// 企业基本信息
|
||||||
@ -451,8 +464,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region DepartmentCalendarConfig-部门日历配置表
|
#region DepartmentCalendarConfig-部门日历配置表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 部门日历配置表
|
/// 部门日历配置表
|
||||||
@ -560,8 +575,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region DepartmentCalendarConfigDetail-部门日历配置明细表
|
#region DepartmentCalendarConfigDetail-部门日历配置明细表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 部门日历配置明细表
|
/// 部门日历配置明细表
|
||||||
@ -669,8 +686,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region DepartmentCalendarConfigTeam-部门日历配置班组表
|
#region DepartmentCalendarConfigTeam-部门日历配置班组表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 部门日历配置班组表
|
/// 部门日历配置班组表
|
||||||
@ -778,8 +797,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region DepartmentCompletion-XX班完成情况统计
|
#region DepartmentCompletion-XX班完成情况统计
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// XX班完成情况统计
|
/// XX班完成情况统计
|
||||||
@ -887,8 +908,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region DepartmentCompletionSort-班组完成情况前十
|
#region DepartmentCompletionSort-班组完成情况前十
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 班组完成情况前十
|
/// 班组完成情况前十
|
||||||
@ -996,8 +1019,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region DepartmentPost-部门岗位
|
#region DepartmentPost-部门岗位
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 部门岗位
|
/// 部门岗位
|
||||||
@ -1105,8 +1130,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region DepartmentPostUser-部门岗位人员
|
#region DepartmentPostUser-部门岗位人员
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 部门岗位人员
|
/// 部门岗位人员
|
||||||
@ -1214,8 +1241,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region DepartmentProductionUnit-生产单元
|
#region DepartmentProductionUnit-生产单元
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 生产单元
|
/// 生产单元
|
||||||
@ -1323,8 +1352,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region DepartmentSafeuser-安全员表
|
#region DepartmentSafeuser-安全员表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 安全员表
|
/// 安全员表
|
||||||
@ -1432,8 +1463,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region DepartmentScheduling-部门排班表
|
#region DepartmentScheduling-部门排班表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 部门排班表
|
/// 部门排班表
|
||||||
@ -1541,8 +1574,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region DepartmentSchedulingDetail-排班信息人员明细表
|
#region DepartmentSchedulingDetail-排班信息人员明细表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 排班信息人员明细表
|
/// 排班信息人员明细表
|
||||||
@ -1650,8 +1685,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region DepartmentUser-部门人员表
|
#region DepartmentUser-部门人员表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 部门人员表
|
/// 部门人员表
|
||||||
@ -1759,8 +1796,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Enum-枚举管理
|
#region Enum-枚举管理
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 枚举管理
|
/// 枚举管理
|
||||||
@ -1868,8 +1907,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Enums-枚举表单
|
#region Enums-枚举表单
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 枚举表单
|
/// 枚举表单
|
||||||
@ -1977,8 +2018,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region EnumItem-枚举项
|
#region EnumItem-枚举项
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 枚举项
|
/// 枚举项
|
||||||
@ -2086,8 +2129,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region EnumType-枚举类别
|
#region EnumType-枚举类别
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 枚举类别
|
/// 枚举类别
|
||||||
@ -2195,8 +2240,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region HiddenDangerRectification-隐患整改完成情况统计
|
#region HiddenDangerRectification-隐患整改完成情况统计
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 隐患整改完成情况统计
|
/// 隐患整改完成情况统计
|
||||||
@ -2304,8 +2351,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region JobActivityCompletion-班组作业完成率统计
|
#region JobActivityCompletion-班组作业完成率统计
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 班组作业完成率统计
|
/// 班组作业完成率统计
|
||||||
@ -2413,8 +2462,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region MessageTemplate-短信模板表
|
#region MessageTemplate-短信模板表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 短信模板表
|
/// 短信模板表
|
||||||
@ -2522,8 +2573,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Monitoring-服务器监听表
|
#region Monitoring-服务器监听表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 服务器监听表
|
/// 服务器监听表
|
||||||
@ -2631,8 +2684,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Notice-信息通知表
|
#region Notice-信息通知表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 信息通知表
|
/// 信息通知表
|
||||||
@ -2740,8 +2795,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region NotificationTask-娑堟伅琛?
|
#region NotificationTask-娑堟伅琛?
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 娑堟伅琛?
|
/// 娑堟伅琛?
|
||||||
@ -2849,8 +2906,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region NotificationTaskTimeSet-寰呭姙琛ㄦ椂闂撮厤缃?
|
#region NotificationTaskTimeSet-寰呭姙琛ㄦ椂闂撮厤缃?
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 寰呭姙琛ㄦ椂闂撮厤缃?
|
/// 寰呭姙琛ㄦ椂闂撮厤缃?
|
||||||
@ -2958,8 +3017,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ParamSet-参数设置表
|
#region ParamSet-参数设置表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 参数设置表
|
/// 参数设置表
|
||||||
@ -3067,8 +3128,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ParamSetDepartment-组织关联信息
|
#region ParamSetDepartment-组织关联信息
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 组织关联信息
|
/// 组织关联信息
|
||||||
@ -3176,8 +3239,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Person-人员信息
|
#region Person-人员信息
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 人员信息
|
/// 人员信息
|
||||||
@ -3285,8 +3350,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region PersonCertificateFile-证书
|
#region PersonCertificateFile-证书
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 证书
|
/// 证书
|
||||||
@ -3394,8 +3461,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region PersonEducationFile-学历证
|
#region PersonEducationFile-学历证
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 学历证
|
/// 学历证
|
||||||
@ -3503,8 +3572,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region PersonIdcardFile-身份证
|
#region PersonIdcardFile-身份证
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 身份证
|
/// 身份证
|
||||||
@ -3612,8 +3683,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region PersonSkills-技能
|
#region PersonSkills-技能
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 技能
|
/// 技能
|
||||||
@ -3721,8 +3794,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region PersonWork-工作经历
|
#region PersonWork-工作经历
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 工作经历
|
/// 工作经历
|
||||||
@ -3830,8 +3905,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskLevelProportion-风险等级占比
|
#region RiskLevelProportion-风险等级占比
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 风险等级占比
|
/// 风险等级占比
|
||||||
@ -3939,8 +4016,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RiskTypeProportion-风险类别占比
|
#region RiskTypeProportion-风险类别占比
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 风险类别占比
|
/// 风险类别占比
|
||||||
@ -4048,8 +4127,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RoleDepartment-部门权限
|
#region RoleDepartment-部门权限
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 部门权限
|
/// 部门权限
|
||||||
@ -4157,8 +4238,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Snapshot-随手拍
|
#region Snapshot-随手拍
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 随手拍
|
/// 随手拍
|
||||||
@ -4266,8 +4349,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SnapshotFile-随手拍图片
|
#region SnapshotFile-随手拍图片
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 随手拍图片
|
/// 随手拍图片
|
||||||
@ -4375,8 +4460,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SyncLimit-数据同步次数限制
|
#region SyncLimit-数据同步次数限制
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 数据同步次数限制
|
/// 数据同步次数限制
|
||||||
@ -4484,8 +4571,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SyncLog-跑批日志表
|
#region SyncLog-跑批日志表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 跑批日志表
|
/// 跑批日志表
|
||||||
@ -4593,8 +4682,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SyncLogDetail-跑批日志明细表
|
#region SyncLogDetail-跑批日志明细表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 跑批日志明细表
|
/// 跑批日志明细表
|
||||||
@ -4702,8 +4793,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region SyncUserRule-用户数据同步例外配置
|
#region SyncUserRule-用户数据同步例外配置
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 用户数据同步例外配置
|
/// 用户数据同步例外配置
|
||||||
@ -4811,8 +4904,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Team-班组表
|
#region Team-班组表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 班组表
|
/// 班组表
|
||||||
@ -4920,8 +5015,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region TeamPerson-班组人员关联信息
|
#region TeamPerson-班组人员关联信息
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 班组人员关联信息
|
/// 班组人员关联信息
|
||||||
@ -5029,8 +5126,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region UserDepartment-用户部门关联表
|
#region UserDepartment-用户部门关联表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 用户部门关联表
|
/// 用户部门关联表
|
||||||
@ -5138,8 +5237,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region UserPost-宀椾綅鍒楄〃
|
#region UserPost-宀椾綅鍒楄〃
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 宀椾綅鍒楄〃
|
/// 宀椾綅鍒楄〃
|
||||||
@ -5247,8 +5348,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region UserProductionUnit-生产单元
|
#region UserProductionUnit-生产单元
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 生产单元
|
/// 生产单元
|
||||||
@ -5356,8 +5459,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region UserProductionUnitSet-生产单元
|
#region UserProductionUnitSet-生产单元
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 生产单元
|
/// 生产单元
|
||||||
@ -5465,8 +5570,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region UserSignFile-签名照片
|
#region UserSignFile-签名照片
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 签名照片
|
/// 签名照片
|
||||||
@ -5574,8 +5681,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region UserTest-测试多选
|
#region UserTest-测试多选
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 测试多选
|
/// 测试多选
|
||||||
@ -5683,8 +5792,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region UserVacationSet-人员休假设置
|
#region UserVacationSet-人员休假设置
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 人员休假设置
|
/// 人员休假设置
|
||||||
@ -5792,8 +5903,10 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region WorkTicketCompletion-关键许可工作票完成情况统计
|
#region WorkTicketCompletion-关键许可工作票完成情况统计
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 关键许可工作票完成情况统计
|
/// 关键许可工作票完成情况统计
|
||||||
@ -5901,6 +6014,8 @@ using APT.BaseData.Domain.Entities;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// T4模板文件:基础接口类
|
// T4模板文件:基础接口类
|
||||||
// 此代码由T4模板自动生成
|
// 此代码由T4模板自动生成
|
||||||
@ -16,6 +22,7 @@ using APT.BaseData.Domain.ApiModel.PF;
|
|||||||
namespace APT.LG.WebApi.Controllers.Api
|
namespace APT.LG.WebApi.Controllers.Api
|
||||||
{
|
{
|
||||||
using APT.BaseData.Domain.Entities.LG;
|
using APT.BaseData.Domain.Entities.LG;
|
||||||
|
|
||||||
#region Oprate-表单操作日志表
|
#region Oprate-表单操作日志表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 表单操作日志表
|
/// 表单操作日志表
|
||||||
@ -123,6 +130,8 @@ namespace APT.LG.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// T4模板文件:基础接口类
|
// T4模板文件:基础接口类
|
||||||
// 此代码由T4模板自动生成
|
// 此代码由T4模板自动生成
|
||||||
@ -16,6 +22,7 @@ using APT.BaseData.Domain.ApiModel.PF;
|
|||||||
namespace APT.NW.WebApi.Controllers.Api
|
namespace APT.NW.WebApi.Controllers.Api
|
||||||
{
|
{
|
||||||
using APT.BaseData.Domain.Entities.NW;
|
using APT.BaseData.Domain.Entities.NW;
|
||||||
|
|
||||||
#region Enterprise-子企业表
|
#region Enterprise-子企业表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 子企业表
|
/// 子企业表
|
||||||
@ -122,7 +129,8 @@ namespace APT.NW.WebApi.Controllers.Api
|
|||||||
{
|
{
|
||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
/// <summary>
|
|
||||||
|
/// <summary>
|
||||||
/// 获得树形实体数据
|
/// 获得树形实体数据
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="filter"></param>
|
/// <param name="filter"></param>
|
||||||
@ -133,8 +141,10 @@ namespace APT.NW.WebApi.Controllers.Api
|
|||||||
return WitTreeOrderEntities(null, filter);
|
return WitTreeOrderEntities(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RoleDataPerm-子企业数据权限表
|
#region RoleDataPerm-子企业数据权限表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 子企业数据权限表
|
/// 子企业数据权限表
|
||||||
@ -242,8 +252,10 @@ namespace APT.NW.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RoleMenu-子企业权限表
|
#region RoleMenu-子企业权限表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 子企业权限表
|
/// 子企业权限表
|
||||||
@ -351,6 +363,8 @@ namespace APT.NW.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// T4模板文件:基础接口类
|
// T4模板文件:基础接口类
|
||||||
// 此代码由T4模板自动生成
|
// 此代码由T4模板自动生成
|
||||||
@ -16,6 +22,7 @@ using APT.BaseData.Domain.ApiModel.PF;
|
|||||||
namespace APT.OP.WebApi.Controllers.Api
|
namespace APT.OP.WebApi.Controllers.Api
|
||||||
{
|
{
|
||||||
using APT.BaseData.Domain.Entities.OP;
|
using APT.BaseData.Domain.Entities.OP;
|
||||||
|
|
||||||
#region Alluser-用户表(租户平台)
|
#region Alluser-用户表(租户平台)
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 用户表(租户平台)
|
/// 用户表(租户平台)
|
||||||
@ -123,8 +130,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region BillingRule-计费规则表
|
#region BillingRule-计费规则表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 计费规则表
|
/// 计费规则表
|
||||||
@ -232,8 +241,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region BillingRuleVersion-计费规则子表
|
#region BillingRuleVersion-计费规则子表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 计费规则子表
|
/// 计费规则子表
|
||||||
@ -341,8 +352,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ChargeTimeSet-充电时长配置
|
#region ChargeTimeSet-充电时长配置
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 充电时长配置
|
/// 充电时长配置
|
||||||
@ -450,8 +463,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Client-客户表
|
#region Client-客户表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 客户表
|
/// 客户表
|
||||||
@ -559,8 +574,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ClinetOpenid-客户表OpenId
|
#region ClinetOpenid-客户表OpenId
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 客户表OpenId
|
/// 客户表OpenId
|
||||||
@ -668,8 +685,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CommonQuestion-常见问题
|
#region CommonQuestion-常见问题
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 常见问题
|
/// 常见问题
|
||||||
@ -777,8 +796,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region FileFirmware-充电桩固件表
|
#region FileFirmware-充电桩固件表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 充电桩固件表
|
/// 充电桩固件表
|
||||||
@ -886,8 +907,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Member-会员表
|
#region Member-会员表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 会员表
|
/// 会员表
|
||||||
@ -995,8 +1018,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Menu-菜单表(租户平台)
|
#region Menu-菜单表(租户平台)
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 菜单表(租户平台)
|
/// 菜单表(租户平台)
|
||||||
@ -1103,7 +1128,8 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
{
|
{
|
||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
/// <summary>
|
|
||||||
|
/// <summary>
|
||||||
/// 获得树形实体数据
|
/// 获得树形实体数据
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="filter"></param>
|
/// <param name="filter"></param>
|
||||||
@ -1114,8 +1140,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitTreeOrderEntities(null, filter);
|
return WitTreeOrderEntities(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Notice-公告表
|
#region Notice-公告表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 公告表
|
/// 公告表
|
||||||
@ -1223,8 +1251,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region NoticeDetail-公告内容
|
#region NoticeDetail-公告内容
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 公告内容
|
/// 公告内容
|
||||||
@ -1332,8 +1362,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region PeakValleyConfig-峰谷配置表
|
#region PeakValleyConfig-峰谷配置表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 峰谷配置表
|
/// 峰谷配置表
|
||||||
@ -1441,8 +1473,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RechargeCard-充值卡
|
#region RechargeCard-充值卡
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 充值卡
|
/// 充值卡
|
||||||
@ -1550,8 +1584,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RechargeOrder-充值订单
|
#region RechargeOrder-充值订单
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 充值订单
|
/// 充值订单
|
||||||
@ -1659,8 +1695,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RechargeSetting-充值金额配置
|
#region RechargeSetting-充值金额配置
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 充值金额配置
|
/// 充值金额配置
|
||||||
@ -1768,8 +1806,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RfidCard-RFID卡
|
#region RfidCard-RFID卡
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// RFID卡
|
/// RFID卡
|
||||||
@ -1877,8 +1917,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region RoleMenu-租户权限表
|
#region RoleMenu-租户权限表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 租户权限表
|
/// 租户权限表
|
||||||
@ -1986,8 +2028,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Tenant-租户表
|
#region Tenant-租户表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 租户表
|
/// 租户表
|
||||||
@ -2095,8 +2139,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region TenantDbConn-租户数据库表
|
#region TenantDbConn-租户数据库表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 租户数据库表
|
/// 租户数据库表
|
||||||
@ -2204,8 +2250,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region TenantDomain-租户域名表
|
#region TenantDomain-租户域名表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 租户域名表
|
/// 租户域名表
|
||||||
@ -2313,8 +2361,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region TenantExpiration-租户租期表
|
#region TenantExpiration-租户租期表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 租户租期表
|
/// 租户租期表
|
||||||
@ -2422,8 +2472,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region User-用户表(租户平台)
|
#region User-用户表(租户平台)
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 用户表(租户平台)
|
/// 用户表(租户平台)
|
||||||
@ -2531,8 +2583,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Version-版本升级表
|
#region Version-版本升级表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 版本升级表
|
/// 版本升级表
|
||||||
@ -2640,8 +2694,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region VersionMenu-菜单版本升级表
|
#region VersionMenu-菜单版本升级表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 菜单版本升级表
|
/// 菜单版本升级表
|
||||||
@ -2749,8 +2805,10 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region VersionTenant-租户版本升级表
|
#region VersionTenant-租户版本升级表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 租户版本升级表
|
/// 租户版本升级表
|
||||||
@ -2858,6 +2916,8 @@ namespace APT.OP.WebApi.Controllers.Api
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// T4模板文件:基础接口类
|
// T4模板文件:基础接口类
|
||||||
// 此代码由T4模板自动生成
|
// 此代码由T4模板自动生成
|
||||||
@ -19,6 +25,7 @@ namespace APT.PF.WebApi.Controllers.Api
|
|||||||
using APT.BaseData.Domain.Entities;
|
using APT.BaseData.Domain.Entities;
|
||||||
using APT.BaseData.Domain.Entities.PF;
|
using APT.BaseData.Domain.Entities.PF;
|
||||||
using APT.BaseData.Domain.Entities.T4;
|
using APT.BaseData.Domain.Entities.T4;
|
||||||
|
|
||||||
#region ApprovalRole-审批角色
|
#region ApprovalRole-审批角色
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 审批角色
|
/// 审批角色
|
||||||
@ -126,8 +133,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Approve-审批流主表
|
#region Approve-审批流主表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 审批流主表
|
/// 审批流主表
|
||||||
@ -235,8 +244,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ApproveDetail-审批流子表
|
#region ApproveDetail-审批流子表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 审批流子表
|
/// 审批流子表
|
||||||
@ -344,8 +355,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ApproveOperationRole-操作角色
|
#region ApproveOperationRole-操作角色
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 操作角色
|
/// 操作角色
|
||||||
@ -453,8 +466,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ApproveRejectConfig-审批驳回配置表
|
#region ApproveRejectConfig-审批驳回配置表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 审批驳回配置表
|
/// 审批驳回配置表
|
||||||
@ -562,8 +577,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ApproveRoleDepartment-分管部门
|
#region ApproveRoleDepartment-分管部门
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 分管部门
|
/// 分管部门
|
||||||
@ -671,8 +688,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ApproveTemp-审批流模板主表
|
#region ApproveTemp-审批流模板主表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 审批流模板主表
|
/// 审批流模板主表
|
||||||
@ -780,8 +799,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ApproveTempDetail-审批流模板子表
|
#region ApproveTempDetail-审批流模板子表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 审批流模板子表
|
/// 审批流模板子表
|
||||||
@ -889,8 +910,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region AppVersion-App版本发布
|
#region AppVersion-App版本发布
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// App版本发布
|
/// App版本发布
|
||||||
@ -998,8 +1021,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region AppVersionFile-App包文件
|
#region AppVersionFile-App包文件
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// App包文件
|
/// App包文件
|
||||||
@ -1107,8 +1132,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ClientScopes-资源表
|
#region ClientScopes-资源表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 资源表
|
/// 资源表
|
||||||
@ -1216,8 +1243,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region CodeRuleRunLog-编码规则跑批表
|
#region CodeRuleRunLog-编码规则跑批表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 编码规则跑批表
|
/// 编码规则跑批表
|
||||||
@ -1325,8 +1354,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ComplaintLog-转办记录表
|
#region ComplaintLog-转办记录表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 转办记录表
|
/// 转办记录表
|
||||||
@ -1434,8 +1465,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region DataChannel-数据通道
|
#region DataChannel-数据通道
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 数据通道
|
/// 数据通道
|
||||||
@ -1543,8 +1576,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region DataFrequency-采集频率
|
#region DataFrequency-采集频率
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 采集频率
|
/// 采集频率
|
||||||
@ -1652,8 +1687,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Fddeback-意见反馈
|
#region Fddeback-意见反馈
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 意见反馈
|
/// 意见反馈
|
||||||
@ -1761,8 +1798,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region FddebackFile-意见反馈附件
|
#region FddebackFile-意见反馈附件
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 意见反馈附件
|
/// 意见反馈附件
|
||||||
@ -1870,8 +1909,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region FileDb-
|
#region FileDb-
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
@ -1979,8 +2020,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region FileDbFile-
|
#region FileDbFile-
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
@ -2088,8 +2131,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region FileType-
|
#region FileType-
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
@ -2197,8 +2242,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region FormHomeChart-首页:图标区域
|
#region FormHomeChart-首页:图标区域
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 首页:图标区域
|
/// 首页:图标区域
|
||||||
@ -2306,8 +2353,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region FormHomeHmi-首页:HMI区域
|
#region FormHomeHmi-首页:HMI区域
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 首页:HMI区域
|
/// 首页:HMI区域
|
||||||
@ -2415,8 +2464,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region FormHomeRanking-首页:排名区域
|
#region FormHomeRanking-首页:排名区域
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 首页:排名区域
|
/// 首页:排名区域
|
||||||
@ -2524,8 +2575,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region FormHomeStatistic-首页:统计区域
|
#region FormHomeStatistic-首页:统计区域
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 首页:统计区域
|
/// 首页:统计区域
|
||||||
@ -2633,8 +2686,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region FormRelation-关联表单配置
|
#region FormRelation-关联表单配置
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 关联表单配置
|
/// 关联表单配置
|
||||||
@ -2742,8 +2797,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region HomeTitle-首页方针
|
#region HomeTitle-首页方针
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 首页方针
|
/// 首页方针
|
||||||
@ -2851,8 +2908,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region MqttConfig-MQTT配置表
|
#region MqttConfig-MQTT配置表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// MQTT配置表
|
/// MQTT配置表
|
||||||
@ -2960,8 +3019,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region MqttConfigTheme-
|
#region MqttConfigTheme-
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
@ -3069,8 +3130,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Notice-通知
|
#region Notice-通知
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 通知
|
/// 通知
|
||||||
@ -3178,8 +3241,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region NoticeFile-
|
#region NoticeFile-
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
@ -3287,8 +3352,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region PicFilter-图片条件主表
|
#region PicFilter-图片条件主表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 图片条件主表
|
/// 图片条件主表
|
||||||
@ -3396,8 +3463,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region PicFilterDetail-图片条件子表
|
#region PicFilterDetail-图片条件子表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 图片条件子表
|
/// 图片条件子表
|
||||||
@ -3505,8 +3574,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region QuestionFeedback-问题反馈表
|
#region QuestionFeedback-问题反馈表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 问题反馈表
|
/// 问题反馈表
|
||||||
@ -3614,8 +3685,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region QuestionFeedbackFile-问题反馈附件表
|
#region QuestionFeedbackFile-问题反馈附件表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 问题反馈附件表
|
/// 问题反馈附件表
|
||||||
@ -3723,8 +3796,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Scopes-资源表
|
#region Scopes-资源表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 资源表
|
/// 资源表
|
||||||
@ -3832,8 +3907,10 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region VersionManage-版本管理表
|
#region VersionManage-版本管理表
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 版本管理表
|
/// 版本管理表
|
||||||
@ -3941,6 +4018,8 @@ using APT.BaseData.Domain.Entities.T4;
|
|||||||
return WitEntity(null, filter);
|
return WitEntity(null, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1403,7 +1403,7 @@ namespace APT.PP.WebApi.Controllers.Api
|
|||||||
{
|
{
|
||||||
endtime = Convert.ToDateTime(plan.END_DATE.ToString().Replace("0:00:00", "23:59:59"));
|
endtime = Convert.ToDateTime(plan.END_DATE.ToString().Replace("0:00:00", "23:59:59"));
|
||||||
}
|
}
|
||||||
var noticeTask = NotificationTaskService.InsertUserNoticeTaskModel("安全风险辨识表(" + DateTime.Now.ToShortDateString().Replace("/", "") + ")", ide.ID, filter.OrgId, user.ID, user.NAME, DateTime.Now, endtime, (int)FMNoticeTypeEnum.消息, "SK033");
|
var noticeTask = NotificationTaskService.InsertUserNoticeTaskModel("安全风险辨识表" + DateTime.Now.Month.PadLeft(2,'0') + DateTime.Now.Day.PadLeft(2, '0'), ide.ID, filter.OrgId, user.ID, user.NAME, DateTime.Now, endtime, (int)FMNoticeTypeEnum.消息, "SK033");
|
||||||
notices.Add(noticeTask);
|
notices.Add(noticeTask);
|
||||||
//}
|
//}
|
||||||
}
|
}
|
||||||
@ -1464,7 +1464,9 @@ namespace APT.PP.WebApi.Controllers.Api
|
|||||||
List<T_SK_RISK_IDENTIFY_RESULT> results = new List<T_SK_RISK_IDENTIFY_RESULT>();
|
List<T_SK_RISK_IDENTIFY_RESULT> results = new List<T_SK_RISK_IDENTIFY_RESULT>();
|
||||||
List<T_SK_RISK_IDENTIFY_RESULT_DETAIL> resultDetails = new List<T_SK_RISK_IDENTIFY_RESULT_DETAIL>();
|
List<T_SK_RISK_IDENTIFY_RESULT_DETAIL> resultDetails = new List<T_SK_RISK_IDENTIFY_RESULT_DETAIL>();
|
||||||
List<T_SK_RISK_IDENTIFY_RESULT_REQUIRE> resultRequires = new List<T_SK_RISK_IDENTIFY_RESULT_REQUIRE>();
|
List<T_SK_RISK_IDENTIFY_RESULT_REQUIRE> resultRequires = new List<T_SK_RISK_IDENTIFY_RESULT_REQUIRE>();
|
||||||
//List<T_SK_RISK_IDENTIFY_DETAIL_RESULT_MEASURE> resultDetailMes = new List<T_SK_RISK_IDENTIFY_DETAIL_RESULT_MEASURE>();
|
List<T_SK_RISK_IDENTIFY_DETAIL_RESULT_MEASURE> resultDetailMes = new List<T_SK_RISK_IDENTIFY_DETAIL_RESULT_MEASURE>();
|
||||||
|
List<T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST> resultDetailPosts = new List<T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST>();
|
||||||
|
List<T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL> resultDetailPostDets = new List<T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL>();
|
||||||
var requre = this.GetEntity<T_SK_REQUEST>(t => !t.IS_DELETED);
|
var requre = this.GetEntity<T_SK_REQUEST>(t => !t.IS_DELETED);
|
||||||
var users = this.GetEntities<T_FM_USER>(t => t.ENABLE_STATUS == 0 && !t.CODE.Contains("admin"), new BaseFilter(filter.OrgId), "Nav_ApproveRole", "Nav_Person");
|
var users = this.GetEntities<T_FM_USER>(t => t.ENABLE_STATUS == 0 && !t.CODE.Contains("admin"), new BaseFilter(filter.OrgId), "Nav_ApproveRole", "Nav_Person");
|
||||||
var departs = this.GetEntities<T_FM_DEPARTMENT>(t => t.ENABLE_STATUS == 0, new BaseFilter(filter.OrgId));
|
var departs = this.GetEntities<T_FM_DEPARTMENT>(t => t.ENABLE_STATUS == 0, new BaseFilter(filter.OrgId));
|
||||||
@ -1591,68 +1593,60 @@ namespace APT.PP.WebApi.Controllers.Api
|
|||||||
var i = 1;
|
var i = 1;
|
||||||
foreach (var mm in mesTemps)
|
foreach (var mm in mesTemps)
|
||||||
{
|
{
|
||||||
//T_SK_RISK_IDENTIFY_DETAIL_RESULT_MEASURE mes = new T_SK_RISK_IDENTIFY_DETAIL_RESULT_MEASURE();
|
T_SK_RISK_IDENTIFY_DETAIL_RESULT_MEASURE mes = new T_SK_RISK_IDENTIFY_DETAIL_RESULT_MEASURE();
|
||||||
//mes.ORG_ID = filter.OrgId;
|
mes.ORG_ID = filter.OrgId;
|
||||||
//mes.RISK_IDENTIFY_RESULT_DETAIL_ID = ideDetail.ID;
|
mes.RISK_IDENTIFY_RESULT_DETAIL_ID = ideDetail.ID;
|
||||||
//mes.NUM = i;
|
mes.NUM = i;
|
||||||
//mes.MEASURE = mm;
|
mes.MEASURE = mm;
|
||||||
//resultDetailMes.Add(mes);
|
resultDetailMes.Add(mes);
|
||||||
var mtemp = i + "、" + mm + ";";
|
var mtemp = i + "、" + mm + ";";
|
||||||
ideDetail.MEASURE = ideDetail.MEASURE + mtemp;
|
ideDetail.MEASURE = ideDetail.MEASURE + mtemp;
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//应急处置
|
//应急处置
|
||||||
var emergeTemps = temp.OrderBy(t => t.NUM).Select(m => m.EMERGENCY).Distinct().ToList();
|
ideDetail.EMERGENCY = temp.FirstOrDefault().EMERGENCY;
|
||||||
if (emergeTemps != null && emergeTemps.Any())
|
//var emergeTemps = temp.OrderBy(t => t.NUM).Select(m => m.EMERGENCY).Distinct().ToList();
|
||||||
{
|
//if (emergeTemps != null && emergeTemps.Any())
|
||||||
var i = 1;
|
//{
|
||||||
foreach (var mm in emergeTemps)
|
// var i = 1;
|
||||||
{
|
// foreach (var mm in emergeTemps)
|
||||||
var mtemp = i + "、" + mm +";";
|
// {
|
||||||
ideDetail.EMERGENCY = ideDetail.EMERGENCY + mtemp;
|
// var mtemp = i + "、" + mm +";";
|
||||||
i++;
|
// ideDetail.EMERGENCY = ideDetail.EMERGENCY + mm;
|
||||||
}
|
// i++;
|
||||||
}
|
// }
|
||||||
|
//}
|
||||||
//辨识部门
|
//辨识部门
|
||||||
var identifyIds = temp.Select(t => t.RISK_IDENTIFY_ID).ToList();
|
var identifyIds = temp.Select(t => t.RISK_IDENTIFY_ID).ToList();
|
||||||
var departIdss = identityTemps.Where(t => identifyIds.Contains(t.ID)).Select(m => m.APPLY_DEPARTMENT_ID).Distinct().ToList();
|
var departIdss = identityTemps.Where(t => identifyIds.Contains(t.ID)).Select(m => m.APPLY_DEPARTMENT_ID).Distinct().ToList();
|
||||||
var userIdss = identityTemps.Where(t => identifyIds.Contains(t.ID)).Select(m => m.APPLY_USER_ID).Distinct().ToList();
|
var userIdss = identityTemps.Where(t => identifyIds.Contains(t.ID)).Select(m => m.APPLY_USER_ID).Distinct().ToList();
|
||||||
if (departIdss.Any())
|
if (departIdss.Any())
|
||||||
{
|
{
|
||||||
var departTemps = departs.Where(t => departIdss.Contains(t.ID)).Select(m => m.DEPARTMENT_TYPE).Distinct().ToList();
|
var departTemps = departs.Where(t => departIdss.Contains(t.ID)).OrderBy(m=>m.DEPARTMENT_TYPE).ToList();
|
||||||
if (departTemps.Any())
|
if (departTemps.Any())
|
||||||
{
|
{
|
||||||
var i = 1;
|
var i = 1;
|
||||||
foreach (var ite in departTemps)
|
foreach (var ite in departTemps)
|
||||||
{
|
{
|
||||||
var departType = "公司级";
|
T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST depart = new T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST();
|
||||||
if (ite == 10)
|
depart.ORG_ID = ite.ORG_ID;
|
||||||
|
depart.DEPARTMENT_ID = ite.ID;
|
||||||
|
depart.RISK_IDENTIFY_RESULT_DETAIL_ID = ideDetail.ID;
|
||||||
|
depart.DEPARTMENT_TYPE = (SKDepartmentTypeEnum)ite.DEPARTMENT_TYPE;
|
||||||
|
depart.NUM = i;
|
||||||
|
resultDetailPosts.Add(depart);
|
||||||
|
var postIds = users.Where(t => t.DEPARTMENT_ID != null && t.DEPARTMENT_ID == ite.ID && userIdss.Contains(t.ID) && t.Nav_Person != null && t.Nav_Person.POST_ID != null).Select(m=>m.Nav_Person?.POST_ID).ToList();
|
||||||
|
if (postIds.Any())
|
||||||
{
|
{
|
||||||
departType = "部门级";
|
foreach (var poId in postIds)
|
||||||
}
|
{
|
||||||
if (ite == 15)
|
T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL poDet = new T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL();
|
||||||
{
|
poDet.ORG_ID = ite.ORG_ID;
|
||||||
departType = "车间级";
|
poDet.RISK_IDENTIFY_DETAIL_RESULT_POST_ID = depart.ID;
|
||||||
}
|
poDet.POST_ID = poId;
|
||||||
if (ite == 20)
|
resultDetailPostDets.Add(poDet);
|
||||||
{
|
}
|
||||||
departType = "班组级";
|
|
||||||
}
|
|
||||||
var temp2 = i == 1 ? i + "、" + departType + ";" : i + "、" + departType + ";";
|
|
||||||
ideDetail.DEPARTMENT_TYPE = ideDetail.DEPARTMENT_TYPE + temp2;
|
|
||||||
var deTemps = departs.Where(t => departIdss.Contains(t.ID) && t.DEPARTMENT_TYPE == ite).Select(m => m.NAME).ToList();
|
|
||||||
var deTempIds = departs.Where(t => departIdss.Contains(t.ID) && t.DEPARTMENT_TYPE == ite).Select(m => m.ID).ToList();
|
|
||||||
var temp3 = i == 1 ? i + "、" + string.Join(",", deTemps) + ";" : i + "、" + string.Join(",", deTemps) + ";";
|
|
||||||
ideDetail.IDENTIFY_DEPARTMENT = ideDetail.IDENTIFY_DEPARTMENT + temp3;
|
|
||||||
var postIdss = users.Where(t => t.DEPARTMENT_ID != null && deTempIds.Contains((Guid)t.DEPARTMENT_ID) && userIdss.Contains(t.ID) && t.Nav_Person != null).ToList();
|
|
||||||
var postIds = postIdss.Where(t => t.Nav_Person != null && t.Nav_Person.POST_ID != null).Select(m => m.Nav_Person.POST_ID).ToList();
|
|
||||||
var postTemps = userPosts.Where(t => postIds.Contains(t.ID)).Select(m => m.NAME).ToList();
|
|
||||||
if (postTemps.Any())
|
|
||||||
{
|
|
||||||
var tempPosts = string.Join(";", postTemps);
|
|
||||||
var temp4 = i == 1 ? i + "、" + tempPosts + ";" : i + "、" + tempPosts + ";";
|
|
||||||
ideDetail.IDENTIFY_POST = ideDetail.IDENTIFY_POST + temp4;
|
|
||||||
}
|
}
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
@ -1766,68 +1760,60 @@ namespace APT.PP.WebApi.Controllers.Api
|
|||||||
var i = 1;
|
var i = 1;
|
||||||
foreach (var mm in mesTemps)
|
foreach (var mm in mesTemps)
|
||||||
{
|
{
|
||||||
//T_SK_RISK_IDENTIFY_DETAIL_RESULT_MEASURE mes = new T_SK_RISK_IDENTIFY_DETAIL_RESULT_MEASURE();
|
T_SK_RISK_IDENTIFY_DETAIL_RESULT_MEASURE mes = new T_SK_RISK_IDENTIFY_DETAIL_RESULT_MEASURE();
|
||||||
//mes.ORG_ID = filter.OrgId;
|
mes.ORG_ID = filter.OrgId;
|
||||||
//mes.RISK_IDENTIFY_RESULT_DETAIL_ID = ideDetail.ID;
|
mes.RISK_IDENTIFY_RESULT_DETAIL_ID = ideDetail.ID;
|
||||||
//mes.NUM = i;
|
mes.NUM = i;
|
||||||
//mes.MEASURE = mm;
|
mes.MEASURE = mm;
|
||||||
//resultDetailMes.Add(mes);
|
resultDetailMes.Add(mes);
|
||||||
var mtemp = i + "、" + mm + ";";
|
var mtemp = i + "、" + mm + ";";
|
||||||
ideDetail.MEASURE = ideDetail.MEASURE + mtemp;
|
ideDetail.MEASURE = ideDetail.MEASURE + mtemp;
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//应急处置
|
//应急处置
|
||||||
var emergeTemps = temp.OrderBy(t => t.NUM).Select(m => m.EMERGENCY).Distinct().ToList();
|
ideDetail.EMERGENCY = temp.FirstOrDefault().EMERGENCY;
|
||||||
if (emergeTemps != null && emergeTemps.Any())
|
//var emergeTemps = temp.OrderBy(t => t.NUM).Select(m => m.EMERGENCY).Distinct().ToList();
|
||||||
{
|
//if (emergeTemps != null && emergeTemps.Any())
|
||||||
var i = 1;
|
//{
|
||||||
foreach (var mm in emergeTemps)
|
// var i = 1;
|
||||||
{
|
// foreach (var mm in emergeTemps)
|
||||||
var mtemp = i + "、" + mm + ";";
|
// {
|
||||||
ideDetail.EMERGENCY = ideDetail.EMERGENCY + mtemp;
|
// var mtemp = i + "、" + mm + ";";
|
||||||
i++;
|
// ideDetail.EMERGENCY = ideDetail.EMERGENCY + mtemp;
|
||||||
}
|
// i++;
|
||||||
}
|
// }
|
||||||
|
//}
|
||||||
//辨识部门
|
//辨识部门
|
||||||
var identifyIds = temp.Select(t => t.RISK_IDENTIFY_ID).ToList();
|
var identifyIds = temp.Select(t => t.RISK_IDENTIFY_ID).ToList();
|
||||||
var departIdss = identityTemps.Where(t => identifyIds.Contains(t.ID)).Select(m => m.APPLY_DEPARTMENT_ID).Distinct().ToList();
|
var departIdss = identityTemps.Where(t => identifyIds.Contains(t.ID)).Select(m => m.APPLY_DEPARTMENT_ID).Distinct().ToList();
|
||||||
var userIdss = identityTemps.Where(t => identifyIds.Contains(t.ID)).Select(m => m.APPLY_USER_ID).Distinct().ToList();
|
var userIdss = identityTemps.Where(t => identifyIds.Contains(t.ID)).Select(m => m.APPLY_USER_ID).Distinct().ToList();
|
||||||
if (departIdss.Any())
|
if (departIdss.Any())
|
||||||
{
|
{
|
||||||
var departTemps = departs.Where(t => departIdss.Contains(t.ID)).Select(m => m.DEPARTMENT_TYPE).Distinct().ToList();
|
var departTemps = departs.Where(t => departIdss.Contains(t.ID)).OrderBy(m => m.DEPARTMENT_TYPE).ToList();
|
||||||
if (departTemps.Any())
|
if (departTemps.Any())
|
||||||
{
|
{
|
||||||
var i = 1;
|
var i = 1;
|
||||||
foreach (var ite in departTemps)
|
foreach (var ite in departTemps)
|
||||||
{
|
{
|
||||||
var departType = "公司级";
|
T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST depart = new T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST();
|
||||||
if (ite == 10)
|
depart.ORG_ID = ite.ORG_ID;
|
||||||
|
depart.DEPARTMENT_ID = ite.ID;
|
||||||
|
depart.RISK_IDENTIFY_RESULT_DETAIL_ID = ideDetail.ID;
|
||||||
|
depart.DEPARTMENT_TYPE = (SKDepartmentTypeEnum)ite.DEPARTMENT_TYPE;
|
||||||
|
depart.NUM = i;
|
||||||
|
resultDetailPosts.Add(depart);
|
||||||
|
var postIds = users.Where(t => t.DEPARTMENT_ID != null && t.DEPARTMENT_ID == ite.ID && userIdss.Contains(t.ID) && t.Nav_Person != null && t.Nav_Person.POST_ID != null).Select(m => m.Nav_Person?.POST_ID).ToList();
|
||||||
|
if (postIds.Any())
|
||||||
{
|
{
|
||||||
departType = "部门级";
|
foreach (var poId in postIds)
|
||||||
}
|
{
|
||||||
if (ite == 15)
|
T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL poDet = new T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL();
|
||||||
{
|
poDet.ORG_ID = ite.ORG_ID;
|
||||||
departType = "车间级";
|
poDet.RISK_IDENTIFY_DETAIL_RESULT_POST_ID = depart.ID;
|
||||||
}
|
poDet.POST_ID = poId;
|
||||||
if (ite == 20)
|
resultDetailPostDets.Add(poDet);
|
||||||
{
|
}
|
||||||
departType = "班组级";
|
|
||||||
}
|
|
||||||
var temp2 = i == 1 ? i + "、" + departType + ";" : i + "、" + departType + ";";
|
|
||||||
ideDetail.DEPARTMENT_TYPE = ideDetail.DEPARTMENT_TYPE + temp2;
|
|
||||||
var deTemps = departs.Where(t => departIdss.Contains(t.ID) && t.DEPARTMENT_TYPE == ite).Select(m => m.NAME).ToList();
|
|
||||||
var deTempIds = departs.Where(t => departIdss.Contains(t.ID) && t.DEPARTMENT_TYPE == ite).Select(m => m.ID).ToList();
|
|
||||||
var temp3 = i == 1 ? i + "、" + string.Join(",", deTemps) + ";" : i + "、" + string.Join(",", deTemps) + ";" ;
|
|
||||||
ideDetail.IDENTIFY_DEPARTMENT = ideDetail.IDENTIFY_DEPARTMENT + temp3;
|
|
||||||
var postIdss = users.Where(t => t.DEPARTMENT_ID != null && deTempIds.Contains((Guid)t.DEPARTMENT_ID) && userIdss.Contains(t.ID) && t.Nav_Person != null).ToList();
|
|
||||||
var postIds = postIdss.Where(t => t.Nav_Person != null && t.Nav_Person.POST_ID != null).Select(m => m.Nav_Person.POST_ID).ToList();
|
|
||||||
var postTemps = userPosts.Where(t => postIds.Contains(t.ID)).Select(m => m.NAME).ToList();
|
|
||||||
if (postTemps.Any())
|
|
||||||
{
|
|
||||||
var tempPosts = string.Join(";", postTemps);
|
|
||||||
var temp4 = i == 1 ? i + "、" + tempPosts + ";" : i + "、" + tempPosts + ";";
|
|
||||||
ideDetail.IDENTIFY_POST = ideDetail.IDENTIFY_POST + temp4;
|
|
||||||
}
|
}
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
@ -1969,68 +1955,60 @@ namespace APT.PP.WebApi.Controllers.Api
|
|||||||
var i = 1;
|
var i = 1;
|
||||||
foreach (var mm in mesTemps)
|
foreach (var mm in mesTemps)
|
||||||
{
|
{
|
||||||
//T_SK_RISK_IDENTIFY_DETAIL_RESULT_MEASURE mes = new T_SK_RISK_IDENTIFY_DETAIL_RESULT_MEASURE();
|
T_SK_RISK_IDENTIFY_DETAIL_RESULT_MEASURE mes = new T_SK_RISK_IDENTIFY_DETAIL_RESULT_MEASURE();
|
||||||
//mes.ORG_ID = filter.OrgId;
|
mes.ORG_ID = filter.OrgId;
|
||||||
//mes.RISK_IDENTIFY_RESULT_DETAIL_ID = ideDetail.ID;
|
mes.RISK_IDENTIFY_RESULT_DETAIL_ID = ideDetail.ID;
|
||||||
//mes.NUM = i;
|
mes.NUM = i;
|
||||||
//mes.MEASURE = mm;
|
mes.MEASURE = mm;
|
||||||
//resultDetailMes.Add(mes);
|
resultDetailMes.Add(mes);
|
||||||
var mtemp = i + "、" + mm + ";";
|
var mtemp = i + "、" + mm + ";";
|
||||||
ideDetail.MEASURE = ideDetail.MEASURE + mtemp;
|
ideDetail.MEASURE = ideDetail.MEASURE + mtemp;
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//应急处置
|
//应急处置
|
||||||
var emergeTemps = temp.OrderBy(t => t.NUM).Select(m => m.EMERGENCY).Distinct().ToList();
|
ideDetail.EMERGENCY = temp.FirstOrDefault().EMERGENCY;
|
||||||
if (emergeTemps != null && emergeTemps.Any())
|
//var emergeTemps = temp.OrderBy(t => t.NUM).Select(m => m.EMERGENCY).Distinct().ToList();
|
||||||
{
|
//if (emergeTemps != null && emergeTemps.Any())
|
||||||
var i = 1;
|
//{
|
||||||
foreach (var mm in emergeTemps)
|
// var i = 1;
|
||||||
{
|
// foreach (var mm in emergeTemps)
|
||||||
var mtemp = i + "、" + mm + ";";
|
// {
|
||||||
ideDetail.EMERGENCY = ideDetail.EMERGENCY + mtemp;
|
// var mtemp = i + "、" + mm + ";";
|
||||||
i++;
|
// ideDetail.EMERGENCY = ideDetail.EMERGENCY + mtemp;
|
||||||
}
|
// i++;
|
||||||
}
|
// }
|
||||||
|
//}
|
||||||
//辨识部门
|
//辨识部门
|
||||||
var identifyIds = temp.Select(t => t.RISK_IDENTIFY_ID).ToList();
|
var identifyIds = temp.Select(t => t.RISK_IDENTIFY_ID).ToList();
|
||||||
var departIdss = identityTemps.Where(t => identifyIds.Contains(t.ID)).Select(m => m.APPLY_DEPARTMENT_ID).Distinct().ToList();
|
var departIdss = identityTemps.Where(t => identifyIds.Contains(t.ID)).Select(m => m.APPLY_DEPARTMENT_ID).Distinct().ToList();
|
||||||
var userIdss = identityTemps.Where(t => identifyIds.Contains(t.ID)).Select(m => m.APPLY_USER_ID).Distinct().ToList();
|
var userIdss = identityTemps.Where(t => identifyIds.Contains(t.ID)).Select(m => m.APPLY_USER_ID).Distinct().ToList();
|
||||||
if (departIdss.Any())
|
if (departIdss.Any())
|
||||||
{
|
{
|
||||||
var departTemps = departs.Where(t => departIdss.Contains(t.ID)).Select(m => m.DEPARTMENT_TYPE).Distinct().ToList();
|
var departTemps = departs.Where(t => departIdss.Contains(t.ID)).OrderBy(m => m.DEPARTMENT_TYPE).ToList();
|
||||||
if (departTemps.Any())
|
if (departTemps.Any())
|
||||||
{
|
{
|
||||||
var i = 1;
|
var i = 1;
|
||||||
foreach (var ite in departTemps)
|
foreach (var ite in departTemps)
|
||||||
{
|
{
|
||||||
var departType = "公司级";
|
T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST depart = new T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST();
|
||||||
if (ite == 10)
|
depart.ORG_ID = ite.ORG_ID;
|
||||||
|
depart.DEPARTMENT_ID = ite.ID;
|
||||||
|
depart.RISK_IDENTIFY_RESULT_DETAIL_ID = ideDetail.ID;
|
||||||
|
depart.DEPARTMENT_TYPE = (SKDepartmentTypeEnum)ite.DEPARTMENT_TYPE;
|
||||||
|
depart.NUM = i;
|
||||||
|
resultDetailPosts.Add(depart);
|
||||||
|
var postIds = users.Where(t => t.DEPARTMENT_ID != null && t.DEPARTMENT_ID == ite.ID && userIdss.Contains(t.ID) && t.Nav_Person != null && t.Nav_Person.POST_ID != null).Select(m => m.Nav_Person?.POST_ID).ToList();
|
||||||
|
if (postIds.Any())
|
||||||
{
|
{
|
||||||
departType = "部门级";
|
foreach (var poId in postIds)
|
||||||
}
|
{
|
||||||
if (ite == 15)
|
T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL poDet = new T_SK_RISK_IDENTIFY_DETAIL_RESULT_POST_DETAIL();
|
||||||
{
|
poDet.ORG_ID = ite.ORG_ID;
|
||||||
departType = "车间级";
|
poDet.RISK_IDENTIFY_DETAIL_RESULT_POST_ID = depart.ID;
|
||||||
}
|
poDet.POST_ID = poId;
|
||||||
if (ite == 20)
|
resultDetailPostDets.Add(poDet);
|
||||||
{
|
}
|
||||||
departType = "班组级";
|
|
||||||
}
|
|
||||||
var temp2 = i == 1 ? i + "、" + departType + ";" : i + "、" + departType + ";";
|
|
||||||
ideDetail.DEPARTMENT_TYPE = ideDetail.DEPARTMENT_TYPE + temp2;
|
|
||||||
var deTemps = departs.Where(t => departIdss.Contains(t.ID) && t.DEPARTMENT_TYPE == ite).Select(m => m.NAME).ToList();
|
|
||||||
var deTempIds = departs.Where(t => departIdss.Contains(t.ID) && t.DEPARTMENT_TYPE == ite).Select(m => m.ID).ToList();
|
|
||||||
var temp3 = i == 1 ? i + "、" + string.Join(",", deTemps) + ";" : i + "、" + string.Join(",", deTemps) + ";";
|
|
||||||
ideDetail.IDENTIFY_DEPARTMENT = ideDetail.IDENTIFY_DEPARTMENT + temp3;
|
|
||||||
var postIdss = users.Where(t => t.DEPARTMENT_ID != null && deTempIds.Contains((Guid)t.DEPARTMENT_ID) && userIdss.Contains(t.ID) && t.Nav_Person != null).ToList();
|
|
||||||
var postIds = postIdss.Where(t => t.Nav_Person != null && t.Nav_Person.POST_ID != null).Select(m => m.Nav_Person.POST_ID).ToList();
|
|
||||||
var postTemps = userPosts.Where(t => postIds.Contains(t.ID)).Select(m => m.NAME).ToList();
|
|
||||||
if (postTemps.Any())
|
|
||||||
{
|
|
||||||
var tempPosts = string.Join(";", postTemps);
|
|
||||||
var temp4 = i == 1 ? i + "、" + tempPosts + ";" : i + "、" + tempPosts + ";";
|
|
||||||
ideDetail.IDENTIFY_POST = ideDetail.IDENTIFY_POST + temp4;
|
|
||||||
}
|
}
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
@ -2070,8 +2048,12 @@ namespace APT.PP.WebApi.Controllers.Api
|
|||||||
BantchSaveEntityNoCommit(resultDetails);
|
BantchSaveEntityNoCommit(resultDetails);
|
||||||
if (resultRequires != null && resultRequires.Any())
|
if (resultRequires != null && resultRequires.Any())
|
||||||
BantchSaveEntityNoCommit(resultRequires);
|
BantchSaveEntityNoCommit(resultRequires);
|
||||||
//if (resultDetailMes != null && resultDetailMes.Any())
|
if (resultDetailMes != null && resultDetailMes.Any())
|
||||||
// BantchSaveEntityNoCommit(resultDetailMes);
|
BantchSaveEntityNoCommit(resultDetailMes);
|
||||||
|
if (resultDetailPosts != null && resultDetailPosts.Any())
|
||||||
|
BantchSaveEntityNoCommit(resultDetailPosts);
|
||||||
|
if (resultDetailPostDets != null && resultDetailPostDets.Any())
|
||||||
|
BantchSaveEntityNoCommit(resultDetailPostDets);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
|
|||||||
@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// T4模板文件:基础接口类
|
// T4模板文件:基础接口类
|
||||||
// 此代码由T4模板自动生成
|
// 此代码由T4模板自动生成
|
||||||
@ -15,4 +21,5 @@ using APT.Infrastructure.Api;
|
|||||||
using APT.BaseData.Domain.ApiModel.PF;
|
using APT.BaseData.Domain.ApiModel.PF;
|
||||||
namespace APT.PP.WebApi.Controllers.Api
|
namespace APT.PP.WebApi.Controllers.Api
|
||||||
{
|
{
|
||||||
}
|
|
||||||
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user