22 lines
480 B
C#
22 lines
480 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCode.Project.Infrastructure.Imports
|
|
{
|
|
public class ImportAct
|
|
{
|
|
/// <summary>
|
|
/// 导入类型 1:卡券 2:根据手机号码得到会员信息
|
|
/// </summary>
|
|
public int ImportType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 传参
|
|
/// </summary>
|
|
public object Param { get; set; }
|
|
}
|
|
}
|