|
|
|
|
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 DS6DataContext : DbContext
|
|
|
|
|
{
|
|
|
|
|
public DS6DataContext() : base("DS6DB")
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DS6DataContext(string conn) : base(conn)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DbSet<t_crm_client_md> t_crm_client { get; set; }
|
|
|
|
|
public DbSet<t_sys_employee_md> t_sys_employee { get; set; }
|
|
|
|
|
public DbSet<t_op_seae_md> t_op_seae { get; set; }
|
|
|
|
|
public DbSet<t_op_seae_assistant_md> t_op_seae_assistant { get; set; }
|
|
|
|
|
public DbSet<t_op_state_md> t_op_state { get; set; }
|
|
|
|
|
public DbSet<t_op_ctn_md> t_op_ctn { get; set; }
|
|
|
|
|
public DbSet<t_op_ams_md> t_op_ams { get; set; }
|
|
|
|
|
|
|
|
|
|
public DbSet<t_code_ctn_md> t_code_ctn { get; set; }
|
|
|
|
|
public DbSet<t_code_ctn_de_md> t_code_ctn_de { get; set; }
|
|
|
|
|
|
|
|
|
|
public DbSet<t_sys_code_emp_md> t_sys_code_emp { get; set; }
|
|
|
|
|
public DbSet<t_code_goods_md> t_code_goods { get; set; }
|
|
|
|
|
public DbSet<t_ch_fee_md> t_ch_fee { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|