You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
137 lines
3.2 KiB
137 lines
3.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ShenTun.ImageCollection.Common
|
|
{
|
|
public class DialogResponse
|
|
{
|
|
public int code { get; set; }
|
|
|
|
public string message { get; set; }
|
|
|
|
public object data { get; set; }
|
|
}
|
|
|
|
public class Response
|
|
{
|
|
|
|
}
|
|
public class CameraPixelVideoList
|
|
{
|
|
public List<CameraPixelVideo> list { get; set; }
|
|
}
|
|
|
|
public class CameraPixelVideo
|
|
{
|
|
public string id { get; set; }
|
|
|
|
public string name { get; set; }
|
|
}
|
|
public class ImageResponse : Response
|
|
{
|
|
public string ImageFormat { get; set; }
|
|
public string Image { get; set; }
|
|
public string FilePath { get; set; }
|
|
}
|
|
public class RequestImage
|
|
{
|
|
public string registerCheckId { get; set; }
|
|
|
|
public string pictureFilename { get; set; }
|
|
|
|
public string localPathName { get; set; }
|
|
|
|
public string isPrint { get; set; }
|
|
|
|
public int displayOrder { get; set; }
|
|
|
|
public string creatorName { get; set; }
|
|
|
|
public string lastModifierName { get; set; }
|
|
|
|
public string lastModificationTime { get; set; }
|
|
|
|
public string lastModifierId { get; set; }
|
|
|
|
public string creationTime { get; set; }
|
|
|
|
public string creatorId { get; set; }
|
|
|
|
public string id { get; set; }
|
|
}
|
|
public class RequestImageEdit
|
|
{
|
|
public string ImageSvr { get; set; }
|
|
public string PeisApiUrl { get; set; }
|
|
public string ImagePath { get; set; }
|
|
|
|
public string Token { get; set; }
|
|
|
|
public string AsbitemName { get; set; }
|
|
|
|
public string Images { get; set; }
|
|
}
|
|
|
|
public class SelectImageInfo
|
|
{
|
|
public string ImageSvr { get; set; }
|
|
|
|
public string PeisApiUrl { get; set; }
|
|
|
|
public string Token { get; set; }
|
|
|
|
public RequestImage Image { get; set; }
|
|
}
|
|
public class RequestInterface
|
|
{
|
|
public int AcquisitionInterface { get; set; }
|
|
|
|
public string ImagePath { get; set; }
|
|
|
|
public int mode { get; set; }
|
|
|
|
public float Delay { get; set; }
|
|
|
|
public long Quality { get; set; }
|
|
public int Total { get; set; }
|
|
|
|
public int VideoPixel { get; set; }
|
|
|
|
public int VideoDevice { get; set; }
|
|
|
|
public string BarCode { get; set; }
|
|
|
|
public string PatientName { get; set; }
|
|
|
|
public string SexName { get; set; }
|
|
|
|
public string Age { get; set; }
|
|
|
|
public string AsbitemName { get; set; }
|
|
|
|
public int TopLeftX { get; set; }
|
|
|
|
public int TopLeftY { get; set; }
|
|
public int BottomRightX { get; set; }
|
|
public int BottomRightY { get; set; }
|
|
}
|
|
|
|
public class PictureBaseStr
|
|
{
|
|
public string registerCheckPictureId { get; set; }
|
|
public string fileName { get; set; }
|
|
public string localPathName { get; set; }
|
|
public string pictureBaseStr { get; set; }
|
|
}
|
|
|
|
|
|
public class UploadPicture
|
|
{
|
|
public string registerCheckId { get; set; }
|
|
public List<PictureBaseStr> pictureBaseStrs { get; set; }
|
|
//public string pictureFileType { get; set; }
|
|
}
|
|
}
|