using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity; using System.Linq; using System.Web; namespace DSWeb.Common.DB { public class CommonDataContext : DbContext { public CommonDataContext() : base("DongShengDB") { } public CommonDataContext(string conn) : base(conn) { } public DbSet MailSend { get; set; } public DbSet MailSendSmtp { get; set; } public DbSet MpConfigs { get; set; } public DbSet code_FtpSet { get; set; } public DbSet OP_LOGICINFO { get; set; } public DbSet sys_param_set { get; set; } public DbSet OP_CTN { get; set; } public DbSet Op_INTERNALTRADE { get; set; } public DbSet info_client { get; set; } public DbSet info_client_bank { get; set; } public DbSet Info_Client_ACCDATE { get; set; } public DbSet code_fee { get; set; } public DbSet CODE_CTN { get; set; } public DbSet op_other { get; set; } public DbSet ch_fee { get; set; } public DbSet ch_fee_invoice { get; set; } public DbSet ch_fee_invoicedetail { get; set; } public DbSet code_goods_inv { get; set; } public DbSet ch_fee_do { get; set; } public DbSet ch_fee_payapplication { get; set; } public DbSet company { get; set; } public DbSet v_op_bs { get; set; } public DbSet v_op_bill { get; set; } public DbSet v_fee_do_settlement{ get; set; } public DbSet v_ch_fee_settlementinfo { get; set; } public DbSet VW_user { get; set; } public DbSet Receipt_Doc { get; set; } public DbSet wms_settlement_detail { get; set; } public DbSet wms_settlement_list { get; set; } public DbSet op_status { get; set; } public DbSet code_cust_edi { get; set; } public DbSet code_issutype_edi { get; set; } public DbSet code_country { get; set; } public DbSet wms { get; set; } public DbSet wms_in { get; set; } public DbSet wms_out { get; set; } public DbSet wms_out_detail { get; set; } public DbSet VW_WMS_OUT_DETAIL { get; set; } public DbSet workflow_type { get; set; } public DbSet workflow { get; set; } public DbSet workflow_step { get; set; } public DbSet workflow_UserPath { get; set; } } }