25 lines
365 B
C#
25 lines
365 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Weixin.SNCirclePromotion
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
public enum StateType
|
|||
|
{
|
|||
|
已推广 = 0,
|
|||
|
未推广 = 1
|
|||
|
}
|
|||
|
|
|||
|
public enum GoodsSourceType
|
|||
|
{
|
|||
|
文件导入 = 0,
|
|||
|
接口采集 = 1,
|
|||
|
对象 = 2
|
|||
|
}
|
|||
|
|
|||
|
}
|