船舶管理


webapi

  • 服务器地址:http://dev.nbeport.com/aps/rest/

1.船舶管理

  • 获取List
    url:http://dev.nbeport.com/aps/rest/Ship/List
    参数:
    Ship_Name 船名
    Area_Dept 管辖单位
    Ship_Type 船舶种类小类
    Ship_Area 航行区域
    WeightS 总吨开始
    WeightE 总吨结束
    Daily_Manager日常管理人
    Ship_Credit 信用评定
    Ship_Nature 管理类型(船舶管理性质)
    Ship_Port 船籍港
    Status 船舶状态
    page 页码
    rows 页数

  • 获取Model
    url:http://dev.nbeport.com/aps/rest/Ship/Get/{id}

  • 保存Post
    url:http://dev.nbeport.com/aps/rest/Ship/savemain

    • 传入Aps_Ship,其中 RowStatus:0新增,1修改;
    • 返回Aps_Ship
  • 删除delete
    url:http://dev.nbeport.com/aps/rest/Ship/delete/{id}

  • 修改审核状态SetStatus
    url:http://dev.nbeport.com/aps/rest/Ship/SetStatus
    post参数:status,id

  • Aps_Ship类

      public string ID { get; set; }
      public string Ship_Name { get; set; }
      public string Ship_RegNo { get; set; }
      public string Ship_RegNo_First { get; set; }
      public string Ship_IdNo { get; set; }
      public string Area_Dept { get; set; }
      public string Ship_Type { get; set; }
      public string Ship_Area { get; set; }
      public string Ship_Nature { get; set; }
      public Nullable Gross_Ton { get; set; }
      public Nullable Net_Ton { get; set; }
      public string Holder { get; set; }
      public string Operater { get; set; }
      public string Manager { get; set; }
      public string Ship_Credit { get; set; }
      public string Ship_Port { get; set; }
      public Nullable Build_Date { get; set; }
      public Nullable Ship_Power { get; set; }
      public string Is_Reg_Check { get; set; }
      public Nullable Check_Date { get; set; }
      public string Ship_Status { get; set; }
      public string Is_Smc { get; set; }
      public string Smc_No { get; set; }
      public Nullable Rated_Passenger_Num { get; set; }
      public string Owner_Company { get; set; }
      public string Is_Cert_Validate { get; set; }
      public Nullable Cert_Validate_Date { get; set; }
      public string Remark { get; set; }
      public string Ship_Status_Remark { get; set; }
      public string Ship_Check_No { get; set; }
      public string Daily_Manager { get; set; }
      public string Is_Sleep { get; set; }
      public Nullable Sleep_Date { get; set; }
      public string Is_Cancel { get; set; }
      public Nullable Cancel_Date { get; set; }
      public string ColorSet { get; set; }
      public string Ship_Type_main { get; set; }
      public int? Carry_Ton { get; set; }
      public string Manager_Sys { get; set; }
      public Nullable SMC_Validate_Date { get; set; }
      public string Holder_Tel { get; set; }
      public string Operator_Tel { get; set; }
      public string Manager_Tel { get; set; }
      public string Is_Exam { get; set; }
      public string Status { get; set; }
      public string CREATE_USER { get; set; }
      public Nullable CREATE_TIME { get; set; }
      public string Sea_Land { get; set; }
    

2.

你可能感兴趣的:(船舶管理)