using System; using System.Collections.Generic; using System.Text; namespace Shentun.Peis.RegisterCheckPictures { public class UpdateRegisterCheckPictureInputDto { /// /// 主键ID /// public Guid RegisterCheckPictureId { get; set; } /// /// 文件名称 /// public string FileName { get; set; } /// /// 本地地址 /// public string LocalPathName { get; set; } /// /// 图片base64字符串 /// public string PictureBaseStr { get; set; } } }