隐患上报单 添加 生产单元
This commit is contained in:
		
							parent
							
								
									5b67f0dac6
								
							
						
					
					
						commit
						4e638109b1
					
				
							
								
								
									
										61927
									
								
								APT.Data.Migrations/Migrations/20240430093056_wyw2024043001.Designer.cs
									
									
									
										generated
									
									
									
										Normal file
									
								
							
							
						
						
									
										61927
									
								
								APT.Data.Migrations/Migrations/20240430093056_wyw2024043001.Designer.cs
									
									
									
										generated
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@ -0,0 +1,23 @@
 | 
				
			|||||||
 | 
					using Microsoft.EntityFrameworkCore.Migrations;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					namespace APT.Data.Migrations.Migrations
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					    public partial class wyw2024043001 : Migration
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					        protected override void Up(MigrationBuilder migrationBuilder)
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            migrationBuilder.AddColumn<int>(
 | 
				
			||||||
 | 
					                name: "CHECKOBJECT",
 | 
				
			||||||
 | 
					                table: "T_BS_RISK_SUBMIT",
 | 
				
			||||||
 | 
					                type: "int",
 | 
				
			||||||
 | 
					                nullable: true);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        protected override void Down(MigrationBuilder migrationBuilder)
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            migrationBuilder.DropColumn(
 | 
				
			||||||
 | 
					                name: "CHECKOBJECT",
 | 
				
			||||||
 | 
					                table: "T_BS_RISK_SUBMIT");
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@ -19434,6 +19434,9 @@ namespace APT.Data.Migrations.Migrations
 | 
				
			|||||||
                    b.Property<Guid?>("APPROVE_ID")
 | 
					                    b.Property<Guid?>("APPROVE_ID")
 | 
				
			||||||
                        .HasColumnType("uniqueidentifier");
 | 
					                        .HasColumnType("uniqueidentifier");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                    b.Property<int?>("CHECKOBJECT")
 | 
				
			||||||
 | 
					                        .HasColumnType("int");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    b.Property<DateTime?>("CHECKTIME")
 | 
					                    b.Property<DateTime?>("CHECKTIME")
 | 
				
			||||||
                        .HasColumnType("datetime2");
 | 
					                        .HasColumnType("datetime2");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -396,6 +396,7 @@ builder.Property(t => t.DESCRIBE).HasMaxLength(500);
 | 
				
			|||||||
builder.Ignore(t => t.CHECK_TYPE_ID);
 | 
					builder.Ignore(t => t.CHECK_TYPE_ID);
 | 
				
			||||||
builder.Ignore(t => t.CHECK_TYPE_LEVEL_ID);
 | 
					builder.Ignore(t => t.CHECK_TYPE_LEVEL_ID);
 | 
				
			||||||
builder.Ignore(t => t.SUBMIT_STATUS);
 | 
					builder.Ignore(t => t.SUBMIT_STATUS);
 | 
				
			||||||
 | 
					builder.Ignore(t => t.CHECKOBJECT);
 | 
				
			||||||
builder.Ignore(t => t.CREATE_NAME);
 | 
					builder.Ignore(t => t.CREATE_NAME);
 | 
				
			||||||
		} 
 | 
							} 
 | 
				
			||||||
     }
 | 
					     }
 | 
				
			||||||
 | 
				
			|||||||
@ -2,6 +2,7 @@
 | 
				
			|||||||
using APT.BaseData.Domain.Entities.FM;
 | 
					using APT.BaseData.Domain.Entities.FM;
 | 
				
			||||||
using APT.BaseData.Domain.Enums;
 | 
					using APT.BaseData.Domain.Enums;
 | 
				
			||||||
using APT.Infrastructure.Core;
 | 
					using APT.Infrastructure.Core;
 | 
				
			||||||
 | 
					using APT.MS.Domain.Enums;
 | 
				
			||||||
using System;
 | 
					using System;
 | 
				
			||||||
using System.Collections.Generic;
 | 
					using System.Collections.Generic;
 | 
				
			||||||
using System.ComponentModel;
 | 
					using System.ComponentModel;
 | 
				
			||||||
@ -220,5 +221,13 @@ namespace APT.MS.Domain.Entities.BS
 | 
				
			|||||||
        [Description("完善人")]
 | 
					        [Description("完善人")]
 | 
				
			||||||
        [DataFieldIngore]
 | 
					        [DataFieldIngore]
 | 
				
			||||||
        public string CREATE_NAME { get; set; }
 | 
					        public string CREATE_NAME { get; set; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        /// <summary>
 | 
				
			||||||
 | 
					        /// 检查对象
 | 
				
			||||||
 | 
					        /// </summary>
 | 
				
			||||||
 | 
					        [Description("检查对象")]
 | 
				
			||||||
 | 
					        [FormFieldTable]
 | 
				
			||||||
 | 
					        [FormFieldEdit]
 | 
				
			||||||
 | 
					        public BSMineTypeEnum? CHECKOBJECT { get; set; }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@ -554,6 +554,12 @@ namespace APT.MS.Domain.Entities.BS
 | 
				
			|||||||
        [DataFieldIngore]
 | 
					        [DataFieldIngore]
 | 
				
			||||||
        public int? SUBMIT_STATUS { get; set; }
 | 
					        public int? SUBMIT_STATUS { get; set; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        /// <summary>
 | 
				
			||||||
 | 
					        /// 检查区域 BS073
 | 
				
			||||||
 | 
					        /// </summary>
 | 
				
			||||||
 | 
					        [Description("检查区域")]
 | 
				
			||||||
 | 
					        [DataFieldIngore]
 | 
				
			||||||
 | 
					        public BSMineTypeEnum? CHECKOBJECT { get; set; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        /// <summary>
 | 
					        /// <summary>
 | 
				
			||||||
        /// 状态 BS073
 | 
					        /// 状态 BS073
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user