审核管理


webapi

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

1.审核管理

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

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

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

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

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

  • Aps_Audit类

     public string ID { get; set; }
      public string Company_ID { get; set; }
      public string Audit_Class { get; set; }
      public string Audit_SubClass { get; set; }
      public Nullable Audit_Date { get; set; }
      public Nullable Audit_Expect_Date { get; set; }
      public string Audit_Status { get; set; }
      public string Audit_Suggest { get; set; }
      public string Audit_Man { get; set; }
      public string Mobile { get; set; }
      public string Remark { get; set; }
      public Nullable ModifyTime { get; set; }
      public Nullable ReturnTime { get; set; }
      public string CREATE_USER { get; set; }
      public Nullable CREATE_TIME { get; set; }
      public string Ship_ID { get; set; }
      public string Ship_Main { get; set; }
      public string Class_ID { get; set; }
      public Nullable Audit_Time { get; set; }
    

2.附件管理

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

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

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

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

  • Aps_Attr类

      public string ID { get; set; }
      public string LINK_ID { get; set; }     
      public int? ORDER_NO { get; set; }
      public string NAME { get; set; }
      public int? NUM { get; set; }
      public int? IS_DEL { get; set; }
      public string CREATE_USER { get; set; }
      public Nullable CREATE_TIME { get; set; }
    

3.附件详情管理

  • 获取List
    url:http://dev.nbeport.com/aps/rest/Attr/detaillist

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

  • 保存Post
    url:http://dev.nbeport.com/aps/rest/Attr/savedetail

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

  • Aps_Attr_Detail类

      public string ID { get; set; }
      public string ATTR_ID { get; set; }
      public string ATTR_TYPE { get; set; }
      public string LINK_PARENT_ID { get; set; }
      public string FILENAME { get; set; }
      public string DESCEIPT { get; set; }
      public string FILE_ID { get; set; }
      public string CREATE_USER { get; set; }
      public Nullable CREATE_TIME { get; set; }
    

4.审核下的代表船

  • 获取List
    url:http://dev.nbeport.com/aps/rest/Audit/getShipList/{AUDIT_ID}

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

  • 保存Post
    url:http://dev.nbeport.com/aps/rest/Audit/saveShip

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

  • Aps_Audit_Ship类
    public string ID { get; set; }
    public string AUDIT_ID { get; set; }
    public string SHIP_ID { get; set; }
    public string CREATE_USER { get; set; }
    public Nullable CREATE_TIME { get; set; }
    public string AUDIT_TYPE { get; set; }

你可能感兴趣的:(审核管理)