using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 陆运支付类型枚举
///
public enum TruckPayMethodEnum
{
///
/// 不开票
///
[Description("不开票")]
NO_INVOICE,
///
/// 本公司发票
///
[Description("本公司发票")]
OWN_COMPANY,
///
/// 陆运发票
///
[Description("陆运发票")]
LAND_TRANS_INVOICE
}
}