VideoEntity.cs 628 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ivf_tl_Entity.GlobalEntitys
  7. {
  8. public class VideoEntity
  9. {
  10. public long id { get; set; }
  11. public string tlSn { get; set; }
  12. public int houseSn { get; set; }
  13. public int embryoCultureRecordId { get; set; }
  14. public int embryoId { get; set; }
  15. public string videoUrl { get; set; }
  16. public int pictureLayer { get; set; }
  17. public string videoName { get; set; }
  18. public int fps { get; set; }
  19. }
  20. }