| 12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.GlobalEntitys
- {
- public class VideoEntity
- {
- public long id { get; set; }
- public string tlSn { get; set; }
- public int houseSn { get; set; }
- public int embryoCultureRecordId { get; set; }
- public int embryoId { get; set; }
- public string videoUrl { get; set; }
- public int pictureLayer { get; set; }
- public string videoName { get; set; }
- public int fps { get; set; }
- }
- }
|