19 lines
492 B
C#
19 lines
492 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace NPlatform.Const
|
|||
|
{
|
|||
|
public class ConstType
|
|||
|
{
|
|||
|
public const string BusinessType_CZ = "充值办卡";
|
|||
|
public const string BusinessType_HK = "消费开单";
|
|||
|
|
|||
|
public const string OrderItemType_HK = "划卡";
|
|||
|
public const string OrderItemType_Item = "单项";
|
|||
|
public const string OrderItemType_Product = "产品";
|
|||
|
}
|
|||
|
}
|