29 lines
584 B
C#
29 lines
584 B
C#
|
using Api.Framework.Tools;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace DYRebate.Entitys
|
|||
|
{
|
|||
|
public class fl_plugin_dy_pidhist : base_model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 抖音账号
|
|||
|
/// </summary>
|
|||
|
public string cpsname { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 推广id
|
|||
|
/// </summary>
|
|||
|
public string pid { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 失效时间
|
|||
|
/// </summary>
|
|||
|
public DateTime expirestime { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|