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.
27 lines
615 B
27 lines
615 B
using FreeSql.DataAnnotations;
|
|
|
|
namespace Znyc.CloudCar.Model.Entities
|
|
{
|
|
/// <summary>
|
|
/// 设备信息图片表
|
|
/// </summary>
|
|
[Table(Name = "equipment_picture")]
|
|
public class EquipmentPictureEntity : EntityBase
|
|
{
|
|
public long EquipmentId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图片类型,10=设备照片,20=行驶证或身份证
|
|
/// </summary>
|
|
public int PictureType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图片地址
|
|
/// </summary>
|
|
[Column(StringLength = 35)]
|
|
|
|
public string PictureLink { get; set; }
|
|
|
|
|
|
}
|
|
}
|
|
|