using System;
using System.Collections.Generic;
namespace Znyc.Cloudcar.Admin.Security.Dtos
{
///
/// 意见反馈输出模型
///
public class FeedbackOutputDto
{
///
/// 用户名
///
public string UserName { get; set; }
///
/// 联系电话
///
public string Phone { get; set; }
///
/// 头像
///
public string AvatarUrl { get; set; }
public long Id { get; set; }
public long UserId { get; set; }
///
/// 反馈内容
///
public string Content { get; set; }
///
/// 状态
///
public int State { get; set; }
///
/// 图片
///
public List FeedbackPic { get; set; }
///
/// 提交时间
///
public DateTime CreatedTime { get; set; }
}
}