using Api.Framework.Tools;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FreeActivity.Entitys
{
///
/// 参加活动的用户信息
///
public class fl_plugin_freeactivity_user_info : base_model
{
///
/// 用户id
///
public long uid { get; set; }
///
/// 活动id
///
public long activityid { get; set; }
///
/// 活动领取时间
///
public DateTime get_time { get; set; }
///
/// 兑换时间
///
public DateTime exchange_time { get; set; }
///
/// 是否进行兑换
///
public ChooseType is_exchange { get; set; }
}
}