using OpenAuth.App.Response;
using OpenAuth.Repository.Domain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.Request
{
///
/// 无人机案件添加实体
///
public class AddOrUpdateDroneCaseInfoReqCurrent
{
public void Init()
{
if (this.pic_list == null) pic_list = new List();
if (this.video_list == null) video_list = new List();
if (this.relationCaseNo == null) relationCaseNo = new List();
if (this.tags == null) tags = new List();
}
public object info { get; set; }
///
/// 图片列表
///
public List pic_list { get; set; }
///
/// 视频列表
///
public List video_list { get; set; }
///
/// 关联案件
///
public List relationCaseNo { get; set; } = new List();
///
/// 案件标签
///
public List tags { get; set; } = new List();
///
/// 图片列表
///
public List pics { get; set; }
///
/// 视频列表
///
public List videos { get; set; }
}
public class AddOrUpdateDroneCaseInfoReqExtCurrent : AddOrUpdateDroneCaseInfoReqCurrent
{
public decimal? lng { get; set; }
public decimal? lat { get; set; }
}
}