表格报表


webapi

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

1.船舶清单

  • 获取List
    url:http://dev.nbeport.com/aps/rest/Report/Ship/List

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

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

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

  • Aps_Report_Ship类

              public int ID { get; set; }
      public string COMPANY_NAME { get; set; }
      public string DOC_NO { get; set; }
      public string SHIP_NAME { get; set; }
      public string SHIP_BNAME { get; set; }
      public string SMC_NO { get; set; }
      public string SMC_DATE_YEAR { get; set; }
      public string SMC_DATE_DAY { get; set; }
      public Nullable ISSUE_DATE { get; set; }
      public string ISSUE_AGENCY_NAME { get; set; }
      public Nullable ENDORSEMENT_DATE { get; set; }
      public string SHIP_TYPE { get; set; }
      public int? GROSS_TON { get; set; }
      public Nullable RATED_PASSENGER_NUM { get; set; }
      public string LINE { get; set; }
      public string IMO_NO { get; set; }
      public string SHIP_REGNO { get; set; }
      public string SHIP_REGNO_FIRST { get; set; }
      public string BUILD_DATE_YEAR { get; set; }
      public string BUILD_DATE_DAY { get; set; }
      public string SHIP_PORT { get; set; }
      public string CLASSIFICATION { get; set; }
      public string IS_TRUST { get; set; }
      public DateTime? IN_SMS_DATE { get; set; }
      public Nullable OUT_SMS_DATE { get; set; }
      public string HOLDER { get; set; }
      public string OPERATOR { get; set; }
      public string REMARK { get; set; }
      public string CREATE_USER { get; set; }
      public Nullable CREATE_TIME { get; set; }
      public string COMPANY_ID { get; set; }
    

2.国际公司持证情况

  • 获取List
    url:http://dev.nbeport.com/aps/rest/Report/CompanyDocOut/List

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

  • 保存Post
    url:http://dev.nbeport.com/aps/rest/Report/CompanyDocOut/Post

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

  • Aps_Report_CompanyDocOut类
    public int ID { get; set; }
    public string DOC_NO { get; set; }
    public string COMPANY_NAME { get; set; }
    public NullableDOC_DATE_FIRST { get; set; }
    public NullableDOC_DATE { get; set; }
    public NullableDOC_DATE_LAST { get; set; }
    public string SHIP_TYPE { get; set; }
    public int? ROPAX_NUM { get; set; }
    public int? PASSENGER_NUM { get; set; }
    public int? CARGO_NUM { get; set; }
    public int? BULKCARGO_NUM { get; set; }
    public int? OIL_NUM { get; set; }
    public int? CHEMICAL_NUM { get; set; }
    public int? OIL_CHEMICAL_NUM { get; set; }
    public int? GAS_NUM { get; set; }
    public int? MODU_NUM { get; set; }
    public int? OTHERSHIP_NUM { get; set; }
    public int? CHINA_NUM { get; set; }
    public int? PANAMA_NUM { get; set; }
    public int? LIBERIA_NUM { get; set; }
    public int? HONGKONG_NUM { get; set; }
    public int? SINGAPORE_NUM { get; set; }
    public int? STVINCENT_NUM { get; set; }
    public int? MALTA_NUM { get; set; }
    public int? VANUATU_NUM { get; set; }
    public int? TANZANIA_NUM { get; set; }
    public int? CYPRUS_NUM { get; set; }
    public int? MARSHALLIS_NUM { get; set; }
    public int? BAHAMAS_NUM { get; set; }
    public int? KIRIBATI_NUM { get; set; }
    public int? OTHER_NUM { get; set; }
    public int? TOTAL_NUM { get; set; }
    public string DOC_NO_IN { get; set; }
    public string REMARK { get; set; }

      public string CREATE_USER { get; set; }
      public Nullable CREATE_TIME { get; set; }
      public string COMPANY_ID { get; set; }
    

3.国内公司持证情况

  • 获取List
    url:http://dev.nbeport.com/aps/rest/Report/CompanyDocIn/List

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

  • 保存Post
    url:http://dev.nbeport.com/aps/rest/Report/CompanyDocIn/Post

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

  • Aps_Report_CompanyDoc_In类

      public int ID { get; set; }
      public string DOC_NO { get; set; }
      public string COMPANY_NAME { get; set; }
      public NullableDOC_DATE_FIRST { get; set; }
      public NullableDOC_DATE { get; set; }
      public NullableDOC_DATE_LAST { get; set; }
      public string SHIP_TYPE { get; set; }
      public int? ROPAX_NUM { get; set; }
      public int? HIGHSPEED_NUM { get; set; }
      public int? GENERAL_NUM { get; set; }
      public int? BULKCARGO_NUM { get; set; }
      public int? OIL_NUM { get; set; }
      public int? CHEMICAL_NUM { get; set; }
      public int? OIL_CHEMICAL_NUM { get; set; }
      public int? GAS_NUM { get; set; }
      public int? MODU_NUM { get; set; }
      public int? OTHERSHIP_NUM { get; set; }
      public int? TOTAL_NUM { get; set; }
      public string DOC_NO_OUT { get; set; }
      public string REMARK { get; set; }
      public string CREATE_USER { get; set; }
      public Nullable CREATE_TIME { get; set; }
      public string COMPANY_ID { get; set; }

你可能感兴趣的:(表格报表)