using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Common
{
public enum BodyType
{
///
/// 白车身
///
WhiteBody = 1,
///
/// 彩车身
///
PaintedBody,
///
/// 空滑橇
///
Empty
}
public enum BodyStatus
{
///
/// 焊装
///
InWeldingShop = 1,
///
/// BDC
///
InBDC,
///
/// 涂装
///
InPaintingShop,
///
/// 总装
///
InAssemblyShop,
///
/// 完成
///
Completed
}
}