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.

42 lines
1.1 KiB
C#

using DSWeb.MvcShipping.Models.MsOpSeaeEdi;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Newtonsoft.Json;
namespace DSWeb.Interface
{
[JsonObject]
public class iEDIModel
{
public MsOpSeaeEdi MDATA { get; set; }
public List<MsOpSeaeEdiCtn> CTNDATA { get; set; }
}
public class EDIStatusModeli
{
public string blno { get; set; }
public string status { get; set; }
public string statustime { get; set; }
public int shenbaoxiangshu { get; set; }
}
public class OPTYPE {
private string _optype{ get; set; }
public string SHOWNAME {
get {
if (_optype == "0") return "新增";
if (_optype == "1") return "修改";
if (_optype == "2") return "删除";
if (_optype == "3") return "保存";
if (_optype == "4") return "作废";
return "";
}
}
public OPTYPE(string optype) {
_optype = optype;
}
}
}