You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
685 B
28 lines
685 B
4 years ago
|
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; }
|
||
|
}
|
||
|
}
|