| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- // <auto-generated />
- using System;
- using Business.EntityFrameworkCore;
- using Microsoft.EntityFrameworkCore;
- using Microsoft.EntityFrameworkCore.Infrastructure;
- using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
- using Volo.Abp.EntityFrameworkCore;
- #nullable disable
- namespace Business.Migrations.BusinessExtMigrationDb
- {
- [DbContext(typeof(BusinessExtMigrationDbContext))]
- partial class BusinessExtMigrationDbContextModelSnapshot : ModelSnapshot
- {
- protected override void BuildModel(ModelBuilder modelBuilder)
- {
- #pragma warning disable 612, 618
- modelBuilder
- .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.MySql)
- .HasAnnotation("ProductVersion", "6.0.5")
- .HasAnnotation("Relational:MaxIdentifierLength", 64);
- modelBuilder.Entity("Bussiness.Model.MES.IC.ic_bom", b =>
- {
- b.Property<long>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("bigint");
- b.Property<bool>("IsDeleted")
- .ValueGeneratedOnAdd()
- .HasColumnType("tinyint(1)")
- .HasDefaultValue(false)
- .HasColumnName("IsDeleted")
- .HasComment("删除标识");
- b.Property<DateTime?>("begin_day")
- .HasColumnType("datetime(6)")
- .HasComment("生效日期");
- b.Property<string>("biller")
- .HasMaxLength(80)
- .HasColumnType("varchar(80)")
- .HasComment("图片");
- b.Property<int>("bom_num")
- .HasColumnType("int")
- .HasComment("序号");
- b.Property<string>("bom_number")
- .HasMaxLength(20)
- .HasColumnType("varchar(20)")
- .HasComment("bom单编号");
- b.Property<string>("chartnumber")
- .HasMaxLength(80)
- .HasColumnType("varchar(80)")
- .HasComment("图表编号");
- b.Property<DateTime?>("check_date")
- .HasColumnType("datetime(6)")
- .HasComment("检验时间");
- b.Property<string>("checker")
- .HasMaxLength(80)
- .HasColumnType("varchar(80)")
- .HasComment("检验人");
- b.Property<long?>("create_by")
- .HasColumnType("bigint")
- .HasComment("创建人id");
- b.Property<string>("create_by_name")
- .HasMaxLength(50)
- .HasColumnType("varchar(50)")
- .HasComment("创建人名称");
- b.Property<DateTime?>("create_time")
- .HasColumnType("datetime(6)")
- .HasComment("创建时间");
- b.Property<DateTime?>("end_day")
- .HasColumnType("datetime(6)")
- .HasComment("失效日期");
- b.Property<long?>("factory_id")
- .HasColumnType("bigint")
- .HasComment("工厂ID");
- b.Property<int>("fse_status")
- .HasColumnType("int")
- .HasComment("使用状态");
- b.Property<long>("icitem_id")
- .HasColumnType("bigint")
- .HasComment("物料id");
- b.Property<string>("item_name")
- .HasMaxLength(200)
- .HasColumnType("varchar(200)")
- .HasComment("物料名称");
- b.Property<string>("item_number")
- .HasMaxLength(80)
- .HasColumnType("varchar(80)")
- .HasComment("物料代码");
- b.Property<long?>("org_id")
- .HasColumnType("bigint")
- .HasComment("组织ID");
- b.Property<string>("product_designer")
- .HasMaxLength(80)
- .HasColumnType("varchar(80)")
- .HasComment("产品设计员");
- b.Property<string>("product_principal")
- .HasMaxLength(80)
- .HasColumnType("varchar(80)")
- .HasComment("生产负责人");
- b.Property<long>("tech_id")
- .HasColumnType("bigint")
- .HasComment("工艺主键");
- b.Property<string>("tech_name")
- .HasMaxLength(20)
- .HasColumnType("varchar(20)")
- .HasComment("工艺名称");
- b.Property<long>("tenant_id")
- .HasColumnType("bigint")
- .HasComment("企业ID");
- b.Property<string>("unit")
- .HasMaxLength(20)
- .HasColumnType("varchar(20)")
- .HasComment("单位");
- b.Property<long?>("update_by")
- .HasColumnType("bigint")
- .HasComment("修改人");
- b.Property<string>("update_by_name")
- .HasMaxLength(50)
- .HasColumnType("varchar(50)")
- .HasComment("修改人名称");
- b.Property<DateTime?>("update_time")
- .HasColumnType("datetime(6)")
- .HasComment("修改时间");
- b.Property<DateTime?>("use_date")
- .HasColumnType("datetime(6)")
- .HasComment("bom创建时间");
- b.Property<string>("user")
- .HasMaxLength(20)
- .HasColumnType("varchar(20)")
- .HasComment("bom创建人");
- b.Property<string>("version")
- .HasMaxLength(80)
- .HasColumnType("varchar(80)")
- .HasComment("版本");
- b.HasKey("Id");
- b.ToTable("ic_bom", (string)null);
- b.HasComment("物料BOM");
- });
- #pragma warning restore 612, 618
- }
- }
- }
|