You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
762 B
28 lines
762 B
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
using WebSocketSharp;
|
||
|
|
||
|
namespace BBWY.Client.Helpers
|
||
|
{
|
||
|
public class ExpressOrderHelper
|
||
|
{
|
||
|
public static string GetExpressStateName(string expressState)
|
||
|
{
|
||
|
if (expressState.IsNullOrEmpty())
|
||
|
return null;
|
||
|
if (expressState == "ZaiTu")
|
||
|
return "运输中";
|
||
|
if (expressState == "LanShou")
|
||
|
return "已揽收";
|
||
|
if (expressState == "QianShou")
|
||
|
return "已签收";
|
||
|
if (expressState == "PaiJian")
|
||
|
return "正在派件";
|
||
|
if (expressState == "Unknow")
|
||
|
return "未知";
|
||
|
return "未知";
|
||
|
}
|
||
|
}
|
||
|
}
|