54 lines
1.0 KiB
C#
54 lines
1.0 KiB
C#
namespace Admin.NET.Application;
|
|
|
|
/// <summary>
|
|
/// 用户院校收藏表输出参数
|
|
/// </summary>
|
|
public class SysUnCollectionOutput
|
|
{
|
|
|
|
public long uId { get; set; }
|
|
/// <summary>
|
|
/// Wx用户Id
|
|
/// </summary>
|
|
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<string> features { get; set; }
|
|
|
|
public string collegeCode { get; set; }
|
|
public string address { get; set; }
|
|
|
|
public List<string> 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<string> utype { get; set; }
|
|
public string nature { get; set; }
|
|
|
|
public string detail { get; set; }
|
|
}
|
|
|
|
|