namespace Admin.NET.Application;
///
/// 用户院校收藏表输出参数
///
public class SysUnCollectionOutput
{
public long uId { get; set; }
///
/// Wx用户Id
///
public long WxId { get; set; }
}
public class UnCollectionDto
{
public long Id { get; set; }
public string Name { get; set; }
public string logo { get; set; }
public string provinceName { get; set; }
public string cityName { get; set; }
public List features { get; set; }
public string collegeCode { get; set; }
public string address { get; set; }
public List imglist { get; set; }
public string vrurl { get; set; }
public string phone { get; set; }
public string belong { get; set; }
public int? level { get; set; }
public bool isCollect { get; set; } = false;
public string builddate { get; set; }
public List utype { get; set; }
public string nature { get; set; }
public string detail { get; set; }
}