| 1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity.Result
- {
- public class AutoFocusPictureEntity
- {
- public bool highestScore { get; set; }
- public int houseSn { get; set; }
- public long id { get; set; }
- public int imageHeight { get; set; }
- public string imageName { get; set; }
- public double imageScore { get; set; }
- public string imageTime { get; set; }
- public string imageUrl { get; set; }
- public int imageWidth { get; set; }
- public int pictureLayer { get; set; }
- public int shootingPosition { get; set; }
- public string sourceImageUrl { get; set; }
- public int totalLayer { get; set; }
- public int wellSn { get; set; }
- }
- public class AutoFocusResult
- {
- public string autofocusTime { get; set; }
- public bool end { get; set; }
- public List<AutoFocusPictureEntity> focusPreviewPictureVOList { get; set; } = new List<AutoFocusPictureEntity>();
- }
- }
|