GET api/{area}/User/GetRechargeSetList?shopId={shopId}
获取充值设置列表
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| shopId | integer |
Required |
|
| area | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of RechargeSettingEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ShopID | integer |
None. |
|
| Recharge | decimal number |
None. |
|
| Donation | decimal number |
None. |
|
| CreatedTime | date |
None. |
|
| CreatedBy | string |
None. |
|
| ModifiedDate | date |
None. |
|
| ModifiedBy | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "b07c1d37-72e4-4f85-b31a-4fb308029139",
"ShopID": 2,
"Recharge": 3.0,
"Donation": 4.0,
"CreatedTime": "2026-06-10T11:12:33.138313+08:00",
"CreatedBy": "sample string 6",
"ModifiedDate": "2026-06-10T11:12:33.138313+08:00",
"ModifiedBy": "sample string 8"
},
{
"Id": "b07c1d37-72e4-4f85-b31a-4fb308029139",
"ShopID": 2,
"Recharge": 3.0,
"Donation": 4.0,
"CreatedTime": "2026-06-10T11:12:33.138313+08:00",
"CreatedBy": "sample string 6",
"ModifiedDate": "2026-06-10T11:12:33.138313+08:00",
"ModifiedBy": "sample string 8"
}
]
application/xml, text/xml
Sample:
<ArrayOfRechargeSettingEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WST.Distributors.Entity">
<RechargeSettingEntity>
<Id>b07c1d37-72e4-4f85-b31a-4fb308029139</Id>
<ShopID>2</ShopID>
<Recharge>3</Recharge>
<Donation>4</Donation>
<CreatedTime>2026-06-10T11:12:33.138313+08:00</CreatedTime>
<CreatedBy>sample string 6</CreatedBy>
<ModifiedDate>2026-06-10T11:12:33.138313+08:00</ModifiedDate>
<ModifiedBy>sample string 8</ModifiedBy>
</RechargeSettingEntity>
<RechargeSettingEntity>
<Id>b07c1d37-72e4-4f85-b31a-4fb308029139</Id>
<ShopID>2</ShopID>
<Recharge>3</Recharge>
<Donation>4</Donation>
<CreatedTime>2026-06-10T11:12:33.138313+08:00</CreatedTime>
<CreatedBy>sample string 6</CreatedBy>
<ModifiedDate>2026-06-10T11:12:33.138313+08:00</ModifiedDate>
<ModifiedBy>sample string 8</ModifiedBy>
</RechargeSettingEntity>
</ArrayOfRechargeSettingEntity>