CtnF 物流重箱系统

函数设计

以下需要登录的信息

  • userid = 3800910103 企业号
  • helppwd = 698211
  • decl_no=380110116015800
  • bill_no=SITGTGNB018210

入境重箱

  • url: http://10.38.0.180/ctnf/rest/Fctn/ConQuery?page={page}&decl_no={decl_no}&bill_no={bill_no}&ctn_no={ctn_no}
  • request: page 页码/decl_no报检号/bill_no提单号/ctn_no集装箱号
  • response: CtnHolder
public class SANITATION
    {
        /// 
        /// 
        /// 
        public string Exer_Code { get; set; }
        /// 
        /// 报检号
        /// 
        public string Gciqexer_Code { get; set; }
        /// 
        /// 提单号
        /// 
        public string BillNo { get; set; }
        /// 
        /// 集装箱号
        /// 
        public string CtnNo { get; set; }
        /// 
        /// 船名
        /// 
        public string Vessel { get; set; }
        /// 
        /// 航次
        /// 
        public string Voyage { get; set; }
        /// 
        /// 港区代码
        /// 
        public string Harbocode { get; set; }
        /// 
        /// 箱尺寸
        /// 
        public string Dimension { get; set; }
        /// 
        /// 
        /// 
        public string Check_Mark { get; set; }
        /// 
        /// 放行状态
        /// 
        public string Commpass { get; set; }
        /// 
        /// EDI收讫时间
        /// 
        public DateTime? Commpass_Time { get; set; }
        /// 
        /// 国检放行时间
        /// 
        public DateTime? Commodrer_Time { get; set; }
        /// 
        /// 查验状态
        /// 
        public string CId { get; set; }
        /// 
        /// 
        /// 
        public string DIG_FLAG { get; set; }
        /// 
        /// 
        /// 
        public string UNPACK_FLAG { get; set; }
    }
  • test: page=1/decl_no=380900115000867

入境空箱

  • url: http://10.38.0.180/ctnf/rest/Fctn/EConQuery?page={page}&check_mark={check_mark}&check_result={check_result}&ctn_no={ctn_no}
  • request: ctn_no 箱号
  • response: EctnrSaniinfoHolder
public class T_ECTNR_SANIINFO
    {
        /// 
        /// 报检号
        /// 
        public string Exer_Code { get; set; }
        /// 
        /// 箱号
        /// 
        public string CtnNo { get; set; }
        /// 
        /// 船名
        /// 
        public string Vessel { get; set; }
        /// 
        /// 航次
        /// 
        public string Voyage { get; set; }
        /// 
        /// 港区代码
        /// 
        public string Harbocode { get; set; }
        /// 
        /// 集装箱尺寸类型
        /// 
        public string CtnsizeType { get; set; }
        /// 
        /// 查验状态
        /// 
        public string Check_Mark { get; set; }
        /// 
        /// 查验结果
        /// 
        public string Check_Result { get; set; }
        /// 
        /// 放行状态
        /// 
        public string Commpass { get; set; }
        /// 
        /// 放行时间
        /// 
        public DateTime? Commpass_Time { get; set; }

    }
  • test: ctn_no=CARU3086557

拼箱结果登记

  • url: http://10.38.0.180/ctnf/rest/Fctn/FlowGetLcLResult?bill_no={bill_no}&ctn_no={ctn_no}
  • request: ctn_no箱号/bill_no提单号
  • response: FLOW_LCLResult
public class FLOW_LCLResult
    {
        /// 
        /// 提单号
        /// 
        public string BILL_NO { get; set; }
        /// 
        /// 集装箱号
        /// 
        public string CTN_NO { get; set; }
        /// 
        /// 航次
        /// 
        public string VOYAGE { get; set; }
        /// 
        /// 船名
        /// 
        public string VESSEL_NAME_EN { get; set; }
        /// 
        /// 木包情况
        /// 
        public string PACK_STRING { get; set; }
        /// 
        /// 来源国
        /// 
        public string ORIGIN_COUNTRY { get; set; }
        /// 
        /// 登记时间
        /// 
        public Nullable CREATE_TIME { get; set; }
        /// 
        /// 是否放行
        /// 
        public string IS_PASS { get; set; }

    }
  • test: bill_no=MTCNBBC462F504 / ctn_no=AMFU3097388

你可能感兴趣的:(CtnF 物流重箱系统)