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.
19 lines
443 B
19 lines
443 B
namespace Znyc.CloudCar.Model.Dtos.EquipmentPicture
|
|
{
|
|
public class EquipmentPictureAddInput
|
|
{
|
|
//public long EquipmentId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图片类型,10=设备照片,20=行驶证或身份证
|
|
/// </summary>
|
|
public int PictureType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图片地址
|
|
/// </summary>
|
|
|
|
public string PictureLink { get; set; }
|
|
|
|
}
|
|
}
|
|
|