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.
28 lines
676 B
28 lines
676 B
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Znyc.Cloudcar.Admin.Commons.Entitys;
|
|
|
|
namespace Znyc.Cloudcar.Admin.Security.Entitys
|
|
{
|
|
/// <summary>
|
|
/// 设备信息图片表
|
|
/// </summary>
|
|
[Table("equipment_picture")]
|
|
[Serializable]
|
|
public class EquipmentPictureEntity : BaseEntity
|
|
{
|
|
public long EquipmentId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图片类型,10=设备照片,20=行驶证或身份证
|
|
/// </summary>
|
|
public int PictureType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图片地址
|
|
/// </summary>
|
|
public string PictureLink { get; set; }
|
|
|
|
}
|
|
}
|
|
|