| 1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity
- {
- 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; }
- }
- }
|