27 lines
685 B
27 lines
685 B
using Coldairarrow.Entity.HuiYan;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Coldairarrow.Entity.DTO
|
|
{
|
|
public class TeamCatTimeDto:cats
|
|
{
|
|
/// <summary>
|
|
/// 最后一次打开淘宝时间
|
|
/// </summary>
|
|
public DateTime? LastTeamShowTBTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最后一次打开京东时间
|
|
/// </summary>
|
|
public DateTime? LastTeamShowJDTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最后一次打开拼多多时间
|
|
/// </summary>
|
|
public DateTime? LastTeamShowPddTime { get; set; }
|
|
}
|
|
}
|
|
|