using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity.Enum
{
///
/// 车状态
///
public enum CarState
{
///
/// 初始值
///
InitialValue = 0,
///
/// 已绑定
///
carBind = 10,
///
/// 出库
///
OutStock = 20,
///
/// 在途
///
Transit = 30,
///
/// 入库
///
Storage = 40,
///
/// 销售未回款
///
SalesNoReturned = 45,
///
/// 已回款
///
Sales = 50,
///
/// 退货
///
RefundnCar = 60,
///
/// 调拨
///
Allocation = 70,
///
/// 返厂
///
ReturnCar = 80
}
///
/// 车状态
///
public enum LeaseStatus
{
///
/// 不在线
///
offline = 1,
///
/// 在线
///
online = 2
}
///
/// 岗位类型
///
public enum PostType
{
///
/// 农机手
///
Agricultural = 1,
///
/// 经销商
///
Distributors = 2,
///
/// 销售员
///
SalesClerk = 3,
///
/// 仓管员
///
Warehouse = 4,
///
/// 营销管理员
///
MarketingAdmin = 5,
///
/// 三包员
///
ThreePacksStaff = 6
}
}