old_flsystem/应用/TBRebate/Entitys/cache_bind_orderid_temp.cs

33 lines
624 B
C#
Raw Permalink Normal View History

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