TbSm.cs 476 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class TbSm
  6. {
  7. public TbSm()
  8. {
  9. TbSmsSents = new HashSet<TbSmsSent>();
  10. }
  11. public string MsgId { get; set; } = null!;
  12. public string Content { get; set; } = null!;
  13. public DateTime CreateTime { get; set; }
  14. public virtual ICollection<TbSmsSent> TbSmsSents { get; set; }
  15. }
  16. }