GET api/package/file/list/{packageId}
根据packageId获取FilePath
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| packageId | 
                         packageId  | 
                    integer | 
                                 Required  | 
                
Body Parameters
None.
Response Information
Resource Description
根据packageId获取FilePath
ReturnResultOfListOfPackageFilePathContract| Name | Description | Type | Additional information | 
|---|---|---|---|
| data | Collection of PackageFilePathContract | 
                             None.  | 
                |
| code | 
                         状态码:100成功,其他自定义  | 
                    integer | 
                             None.  | 
                
| message | 
                         提示消息  | 
                    string | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
{
  "data": [
    {
      "fileId": 1,
      "packageId": 2,
      "fileType": "sample string 3",
      "filePath": "sample string 4",
      "orderBy": 5,
      "createDate": "2025-11-04T18:52:54.9074417+08:00"
    },
    {
      "fileId": 1,
      "packageId": 2,
      "fileType": "sample string 3",
      "filePath": "sample string 4",
      "orderBy": 5,
      "createDate": "2025-11-04T18:52:54.9074417+08:00"
    }
  ],
  "code": 1,
  "message": "sample string 2"
}