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.
29 lines
675 B
29 lines
675 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.RegisterCheckPictures
|
|
{
|
|
public class UpdateRegisterCheckPictureInputDto
|
|
{
|
|
/// <summary>
|
|
/// 主键ID
|
|
/// </summary>
|
|
public Guid RegisterCheckPictureId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件名称
|
|
/// </summary>
|
|
public string FileName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 本地地址
|
|
/// </summary>
|
|
public string LocalPathName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图片base64字符串
|
|
/// </summary>
|
|
public string PictureBaseStr { get; set; }
|
|
}
|
|
}
|