You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
479 B
37 lines
479 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace 齐越慧眼.Models
|
|
{
|
|
public enum TeamItemState
|
|
{
|
|
待比价 = 0,
|
|
|
|
精选 = 1,
|
|
|
|
待上架 = 2,
|
|
|
|
已上架 = 3,
|
|
|
|
放弃 = 4,
|
|
|
|
已发布比价 = 5,
|
|
|
|
已比价 = 6,
|
|
|
|
待修改 = 7
|
|
}
|
|
|
|
|
|
public enum PriceTaskState
|
|
{
|
|
待比价 = 0,
|
|
|
|
已比价 = 1,
|
|
|
|
待修改 = 2,
|
|
|
|
比价完成 = 3
|
|
}
|
|
}
|
|
|