钉钉相关提醒接口

T_Call_CallRecords.cs 414B

12345678910111213141516171819202122
  1. using Microsoft.EntityFrameworkCore;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Threading.Tasks;
  7. namespace ddAlter.Models
  8. {
  9. public class T_Call_CallRecords
  10. {
  11. [Key]
  12. public int CallRecordsId { get; set; }
  13. }
  14. [Keyless]
  15. public class RecordCount
  16. {
  17. public int num { get; set; }
  18. }
  19. }