钉钉相关提醒接口

xyDBContext.cs 454B

12345678910111213141516171819
  1. using ddAlter.Models;
  2. using Microsoft.EntityFrameworkCore;
  3. using System;
  4. using System.Threading.Tasks;
  5. namespace ddAlter.DB
  6. {
  7. public class xyDBContext : DbContext
  8. {
  9. public xyDBContext(DbContextOptions options) : base(options)
  10. {
  11. // Using the default constructor
  12. }
  13. public DbSet<T_Call_CallRecords> T_Call_CallRecords { get; set; }
  14. public DbSet<RecordCount> RecordCount { get; set; }
  15. }
  16. }