using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.Text;
|
|
namespace Operater.DTO.System
|
{
|
public class GetYzUrlLinkRequest
|
{
|
|
[Required(ErrorMessage = "Url不能为空")]
|
public string Url { get; set; }
|
|
[Required(ErrorMessage = "UrlDesc不能为空")]
|
public string UrlDesc { get; set; }
|
|
public string Query { get; set; }
|
}
|
|
public class GetWxShortLinkRequest: GetYzUrlLinkRequest
|
{
|
/// <summary>
|
/// 0 有赞商城 1分销小程序
|
/// </summary>
|
public int MiniType { get; set; }
|
}
|
|
public class GetFxUrlLinkRequest : GetYzUrlLinkRequest
|
{ }
|
|
public class TopWxUrlResponse
|
{
|
public int errcode { get; set; }
|
|
public string errmsg { get; set; }
|
|
public string url_link { get; set; }
|
}
|
|
}
|