12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 此代码是根据模板生成的。
- //
- // 手动更改此文件可能会导致应用程序中发生异常行为。
- // 如果重新生成代码,则将覆盖对此文件的手动更改。
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace EntityDataSet
- {
- using System;
- using System.Data.Entity;
- using System.Data.Entity.Infrastructure;
-
- public partial class wisdom_cs_entity : DbContext
- {
- public wisdom_cs_entity()
- : base("name=wisdom_cs_entity")
- {
- }
-
- protected override void OnModelCreating(DbModelBuilder modelBuilder)
- {
- throw new UnintentionalCodeFirstException();
- }
-
- public DbSet<line> line { get; set; }
- public DbSet<project> project { get; set; }
- public DbSet<windpowerstation> windpowerstation { get; set; }
- public DbSet<electricaltestingpointai> electricaltestingpointai { get; set; }
- public DbSet<electricaltestingpointdi> electricaltestingpointdi { get; set; }
- public DbSet<windpowerstationtestingpoint> windpowerstationtestingpoint { get; set; }
- public DbSet<windturbinetestingpointai> windturbinetestingpointai { get; set; }
- public DbSet<windturbinetestingpointdi> windturbinetestingpointdi { get; set; }
- public DbSet<view_tspoint> view_tspoint { get; set; }
- public DbSet<view_tspoint1> view_tspoint1 { get; set; }
- public DbSet<control_info> control_info { get; set; }
- public DbSet<gycp_cmd_info> gycp_cmd_info { get; set; }
- public DbSet<windturbine> windturbine { get; set; }
- public DbSet<user> user { get; set; }
- public DbSet<gycp_address> gycp_address { get; set; }
- public DbSet<control_log> control_log { get; set; }
- public DbSet<windturbine_uniform_code> windturbine_uniform_code { get; set; }
- }
- }
|