63 lines
1.4 KiB
C#
63 lines
1.4 KiB
C#
//=============================================================
|
|
// 创建人:千年老妖
|
|
// 本页代码,均为原创。对未经许可擅自使用者,本人保留追究其法律责任的权利。
|
|
//==============================================================
|
|
using Api.Framework.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Api.Framework.Cps
|
|
{
|
|
/// <summary>
|
|
/// 阿里妈妈推广位
|
|
/// </summary>
|
|
public class Tuiguangwei
|
|
{
|
|
/// <summary>
|
|
/// 账号
|
|
/// </summary>
|
|
public fl_cps_member Member { get; set; }
|
|
|
|
/// <summary>
|
|
/// 推广位名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 推广位
|
|
/// </summary>
|
|
public string Pid { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 推广位强制返利
|
|
/// </summary>
|
|
public class TuiguangweiActivity : Tuiguangwei
|
|
{
|
|
private string _ShortUrl;
|
|
/// <summary>
|
|
/// 短连接
|
|
/// </summary>
|
|
public string ShortUrl
|
|
{
|
|
get
|
|
{
|
|
return _ShortUrl?.Trim();
|
|
}
|
|
set
|
|
{
|
|
_ShortUrl = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 淘口令
|
|
/// </summary>
|
|
public string Tkl { get; set; }
|
|
}
|
|
|
|
}
|