using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pcb.Common
{
///
/// 入驻物流类型
///
public enum EnumEnterLogisticsType
{
///
/// 公司类型
///
[Note("物流企业")]
WL= 0,
///
/// 个人:船东
///
[Note("个人")]
Person = 1
}
///
/// 个人入驻物流类型
///
public enum EnumEnterLogisticsPersonChildType
{
///
/// 车主
///
[Note("车主")]
CarPerson = 0,
///
/// 个人:船东
///
[Note("船东")]
ShipPerson = 1
}
}