分页获取工厂子账号信息
[TOC]
简要描述
- 分页获取工厂子账号信息
请求类型
- form-data
请求URL
http://192.168.0.91:1234
接口地址
/RepairAdmin/Factory/GetPageChildList
请求方式
- POST
参数
参数名 | 必选 | 类型 | 默认值 | 说明 |
---|---|---|---|---|
FactoryUserId | 是 | string | 工厂主账号 | |
UserId | 否 | string | 查询条件: 账号,真实姓名,工厂名称,联系电话条件查询 | |
IsUse | 是 | string | Y:可用 N:禁用 | 是否可用 |
ProvinceName | 是 | string | 省级名称 | |
CityName | 是 | string | 市级名称 | |
AreaName | 是 | string | 区级名称 | |
DistrictName | 是 | string | 街道名称 | |
Page | 是 | int | 1 | 当前页 |
Rows | 是 | int | 10 | 条数 |
Sort | 否 | string | Id | 排序字段 |
Order | 否 | string | desc | 排序方式 |
返回示例
{
"Success": true,
"msg": "查询成功",
"rows": {
"total": 2,
"rows": [
{
"Id": 2,
"UserId": "test123456",
"TrueName": "张三",
"Password": "49ba59abbe56e057",
"DeCode": "123456",
"PayPwd": null,
"AddTime": "2023-09-11 10:27:25",
"FactoryName": "测试工厂2",
"Logo": "https://www.baidu.com",
"TechieName": "测试技术人员",
"TechiePhone": "13000000001",
"UserName": "测试人员2",
"Phone": "18000000000",
"IsUse": "Y",
"ProvinceName": "浙江省",
"CityName": "宁波市",
"AreaName": "江北区",
"DistrictName": "前洋街道",
"Address": "前洋e商小镇",
"FullAddress": "浙江省宁波市江北区前洋街道前洋e商小镇",
"Amount": 0.00,
"Recharge": 0.00,
"FrozenAmount": 0.00,
"WarrantyAmount": 0.00,
"CertificateNumber": "120000",
"CertifPath": "https://www.baidu.com",
"ParentId": 0,
"LoginNum": 0,
"LastLoginTime": null
},
{
"Id": 1,
"UserId": "TestAdmin",
"TrueName": "测试账号",
"Password": "e10adc3949ba59abbe56e057f20f883e",
"DeCode": "123456",
"PayPwd": null,
"AddTime": null,
"FactoryName": "测试工厂",
"Logo": null,
"TechieName": null,
"TechiePhone": null,
"UserName": null,
"Phone": null,
"IsUse": "Y",
"ProvinceName": null,
"CityName": null,
"AreaName": null,
"DistrictName": null,
"Address": null,
"FullAddress": null,
"Amount": 0.00,
"Recharge": 0.00,
"FrozenAmount": 0.00,
"WarrantyAmount": 0.00,
"CertificateNumber": null,
"CertifPath": null,
"ParentId": 0,
"LoginNum": 66,
"LastLoginTime": "2023-09-08 14:54:25"
}
],
"footer": null
}
}
-