You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
695 B
C#
32 lines
695 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 陆运支付类型枚举
|
|
/// </summary>
|
|
public enum TruckPayMethodEnum
|
|
{
|
|
/// <summary>
|
|
/// 不开票
|
|
/// </summary>
|
|
[Description("不开票")]
|
|
NO_INVOICE,
|
|
/// <summary>
|
|
/// 本公司发票
|
|
/// </summary>
|
|
[Description("本公司发票")]
|
|
OWN_COMPANY,
|
|
/// <summary>
|
|
/// 陆运发票
|
|
/// </summary>
|
|
[Description("陆运发票")]
|
|
LAND_TRANS_INVOICE
|
|
}
|
|
}
|