35 lines
831 B
C#
35 lines
831 B
C#
|
|
|||
|
using Api.Framework.Tools;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace WeChatCollectMoney
|
|||
|
{
|
|||
|
public class fl_plugin_wechatcollectmoney_log : base_model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 转款用户
|
|||
|
/// </summary>
|
|||
|
public long member_id { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 收钱机器人
|
|||
|
/// </summary>
|
|||
|
public long robot_id { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 转账金额
|
|||
|
/// </summary>
|
|||
|
public double money { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 收款时间
|
|||
|
/// </summary>
|
|||
|
public DateTime invalidtime { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 订单id
|
|||
|
/// </summary>
|
|||
|
public string transferid { get; set; }
|
|||
|
}
|
|||
|
}
|