using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pcb.Common
{
public enum EventTaskObjectType : short
{
///
/// 会员
///
[NoteAttribute("会员")]
Member = 1,
///
/// 需求
///
[NoteAttribute("采购/供货需求")]
Requirement = 2,
[NoteAttribute("采购报价")]
CaigouBaojia = 3
}
}