33 lines
624 B
C#
33 lines
624 B
C#
|
using Api.Framework.SDK;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace TBRebate.Entitys
|
|||
|
{
|
|||
|
public class cache_bind_orderid_temp
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
public string orderId { get; set; }
|
|||
|
|
|||
|
public int db_userid { get; set; }
|
|||
|
|
|||
|
public string groupid { get; set; }
|
|||
|
|
|||
|
public string db_robotname { get; set; }
|
|||
|
|
|||
|
public ChatType db_robottype { get; set; }
|
|||
|
|
|||
|
public DateTime bind_time { get; set; }
|
|||
|
|
|||
|
public cache_bind_orderid_temp()
|
|||
|
{
|
|||
|
this.bind_time = DateTime.Now;
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|