old_flsystem/应用/DYRebate/Entitys/fl_plugin_dy_pidhist.cs

29 lines
584 B
C#
Raw Normal View History

2022-09-20 03:10:29 +00:00
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; }
}
}