# 工单列表
# 接口地址
/maintain/bill/list
# 入参
# 字段说明
名称 | 类型 | 必填 | 示例 | 描述 |
---|---|---|---|---|
idMaintainList | Number[] | 否 | [25965086392718043] | 工单标识列表。最多批量传入10个。因数值较大,为避免精度丢失,请使用大整数类型,比如Java的BigInteger |
idOwnOrgList | Number[] | 否 | [15446577379574636119] | 门店标识列表。因数值较大,为避免精度丢失,请使用大整数类型,比如Java的BigInteger |
maintainTypeList | String[] | 否 | ["GD", "XCD"] | 工单类型。枚举值如下:GD(工单), XCD(洗车单), LPD(理赔单), LSD(销售单), THD(退货单) |
balanceStatusList | String[] | 否 | ["7100"] | 结算状态。枚举值如下:7000(未结算), 7100(已结算), 7200(挂账) |
beginBillDate | String | 否 | "2020-04-01" | 进厂时间查询范围的开始,格式:yyyy-MM-dd |
endBillDate | String | 否 | "2020-04-10" | 进厂时间查询范围的结束,格式:yyyy-MM-dd |
beginModifiedTime | String | 否 | "2020-04-01 10:01:30" | 修改时间查询范围的开始,格式:yyyy-MM-dd HH:mm:ss |
endModifiedTime | String | 否 | "2020-04-10 21:40:00" | 修改时间查询范围的结束,格式:yyyy-MM-dd HH:mm:ss |
includeDeleted | boolean | 否 | true | 是否包含已删除单据,true:包含已删除单据,false:不包含已删除单据,默认值为false |
needThirdParty | boolean | 否 | true | 是否返回工单与其他单据的三方关系。true:如果是其他单据转的工单,结果会返thirdPartyInfoVoList(包含来源单据id和来源)。false:不返回thirdPartyInfoVoList。默认false。 |
currentPage | Number | 否 | 20 | 页码。取值范围:大于0的整数。默认值为1 |
pageSize | Number | 否 | 10 | 每页条数。取值范围:大于0的整数。最大值100,默认值为10。 用此接口获取数据时,当翻页获取的条数(currentPage * pageSize)超过3万,为了保护后台搜索引擎,接口将报错。所以请大家尽可能的细化自己的搜索条件,例如根据修改时间分段获取。 |
# JSON示例
{
"paramValues": [
{
"idMaintainList": [
14870306745529281467,
14870508694063286223
],
"idOwnOrgList": [
15446577379574636119
],
"balanceStatusList": [
"7100"
],
"beginBillDate":"2020-04-01",
"endBillDate":"2020-04-10",
"beginModifiedTime": "2020-04-01 23:00:05",
"endModifiedTime": "2020-04-10 23:00:05",
"maintainTypeList": [
"GD",
"XCD"
],
"includeDeleted": true,
"needThirdParty": true,
"currentPage": 2,
"pageSize": 10
}
]
}
# 出参
# 字段说明
名称 | 类型 | 示例 | 描述 |
---|---|---|---|
pkId | Number | 15446577379574697404 | 工单标识,唯一 |
billNo | String(20) | "GD20200417001" | 工单单号 |
maintainType | String(10) | "GD" | 工单类型。枚举值如下:GD(工单), XCD(洗车单), LPD(理赔单), LSD(销售单), THD(退货单) |
billStatus | String(4) | "6300" | 单据状态。枚举值如下:0000(制单), 1001(施工中), 1002(施工结束), 6100(零售单已出库), 6200(退货单已完成), 6300(已完工) |
balanceStatus | String(4) | "7100" | 结算状态。枚举值如下:7000(未结算), 7100(已结算), 7200(挂账) |
invoiceStatus | Number | 0 | 开票状态。枚举值如下:0(未开票), 1(部分开票), 2(已开票) |
billTime | String | "2020-04-17 10:52:00" | 进厂时间,格式:yyyy-MM-dd HH:mm:ss |
creationTime | String | "2020-04-17 10:52:25" | 创建时间,格式:yyyy-MM-dd HH:mm:ss |
deliveryTime | String | "2020-04-17 11:52" | 交车时间,格式:yyyy-MM-dd HH:mm |
modifiedTime | String | "2020-04-17 13:01:00" | 修改时间,格式:yyyy-MM-dd HH:mm:ss |
completeTime | String | "2020-04-17 12:00:00" | 完工时间,格式:yyyy-MM-dd HH:mm:ss |
initialGatheringTime | String | "2020-04-17 12:10:00" | 出厂时间,格式:yyyy-MM-dd HH:mm:ss |
firstSettlementTime | String | "2020-04-17 12:19:08" | 首次收款时间,不受反结算影响,格式:yyyy-MM-dd HH:mm:ss |
finishTime | String | "2020-04-17 13:15:00" | 结清时间,格式:yyyy-MM-dd HH:mm:ss |
oweAmount | Number | 100.00 | 未收金额 |
amountAll | Number | 100.00 | 应收金额 |
amountReal | Number | 98.00 | 实收金额 |
discountAll | Number | 2.00 | 优惠金额 |
oweInvoiceAmount | Number | 0.00 | 未开票金额 |
receiveInvoiceAmount | Number | 100.00 | 已开票金额 |
creator | String(100) | "张某某" | 工单创建人姓名 |
idOwnOrg | Number | 15446577379574636119 | 门店标识 |
employee | String(100) | "李某" | 服务顾问姓名 |
customer | String(100) | "王某某" | 客户姓名 |
idCustomer | Number | 15446577379574637453 | 客户标识 |
cellphone | String(20) | "13800000000" | 客户手机号 |
carNo | String(30) | "苏A00000" | 车牌号 |
idCar | Number | 15446577379574637454 | 车辆标识 |
vin | String(20) | "LFMGJE722BS035661" | 车辆VIN码 |
carModel | String(500) | "奇瑞 A3 1.6 MT 2011 A3-两厢" | 车型全程 |
businessLabel | String(20) | "维修" | 业务分类 |
abbreviation | String(20) | "爱福路总店" | 门店简称 |
claimInsuranceCompanyName | String(50) | "平安保险" | 理赔公司 |
claimInsurancePolicyNumber | String(30) | "BX123456" | 理赔保单号 |
sameAsInsuranceCompany | Boolean | true | 理赔公司是否同本车保险公司 |
insuranceContacts | String(100) | "王**" | 联系人 |
insuranceContactTelephone | String(20) | "13800000000" | 联系电话 |
insuranceCompanyName | String(50) | "平安保险" | 保险公司 |
insuranceCompanyAddress | String(500) | "上海市******" | 公司地址 |
compulsoryInsuranceNumber | String(30) | "JQX****" | 交强险单号 |
compulsoryInsuranceExpirationDate | String | "2020-08-30" | 交强险到期时间。格式yyyy-MM-dd |
commercialInsuranceNumber | String(30) | "SYX******" | 商业险单号 |
commercialInsuranceExpirationDate | String | "2020-08-30" | 商业险到期时间。格式yyyy-MM-dd |
memo | String(500) | "我是备注" | 工单备注 |
idChannel | Number | 25965086392721010 | 来店路径id |
channelName | String | 自然来访 | 来店路径名称 |
mileage | Number | 5000.58 | 当前里程 单据不填写返回0.0 |
nextMileage | Number | 10000.0 | 下次保养里程 单据不填写返回0.0 |
nextMaintainDate | String | "2020-10-05" | 下次保养日期,单据不填写返回"" |
isDel | Number | 1 | 是否删除 0(未被删除),1(已被删除) |
contactName | String(20) | "李磊" | 送修人姓名 |
contactCellphone | String(20) | "13770988219" | 送修人联系电话 |
contactSex | String(5) | "先生" | 送修人性别 |
contactCredentialsNumber | String(20) | "320123200812341234" | 送修人证件号 |
contactCredentialsType | String(20) | "身份证" | 送修人证件类型 |
contactDetailAddress | String(500) | "江苏省南京市鼓楼区中山东路29号" | 送修人详细地址 |
tsMaintainVersion | Long | 1 | 乐观锁版本号 |
thirdPartyInfoVoList | ThirdPartyVo[] | 工单三方关系列表 |
# ThirdPartyVo
名称 | 类型 | 示例 | 描述 |
---|---|---|---|
thirdPartyId | Number | 223872 | 三方单据id |
thirdPartySource | Number | 0 | 0: f6订单 1: f6预约单 2:报价单 3:零售单采购下拨 4:新康众订单5:新康众预约单 6:检测单 7: 协作单 8: 返厂单 |
# JSON示例
{
"code": 200,
"data": {
"list": [
{
"abbreviation": "豆豆新公司",
"amountAll": 200.0,
"amountReal": 200.0,
"balanceStatus": "7100",
"billNo": "GD20200421011",
"billStatus": "6300",
"billTime": "2020-04-21 20:37:00",
"businessLabel": "维修",
"carModel": "别克 凯越 1.5 MT 2013 凯越",
"carNo": "苏A12845",
"cellphone": "13813835555",
"claimInsuranceCompanyName": "",
"claimInsurancePolicyNumber": "",
"commercialInsuranceExpirationDate": "",
"commercialInsuranceNumber": "",
"completeTime": "2020-04-21 20:37:59",
"compulsoryInsuranceExpirationDate": "",
"compulsoryInsuranceNumber": "",
"creationTime": "2020-04-21 20:37:53",
"creator": "吴O山3",
"customer": "韦小宝",
"deliveryTime": "2020-04-21 21:37",
"discountAll": 0.0,
"employee": "吴O山3",
"finishTime": "2020-04-21 20:38:00",
"firstSettlementTime": "2020-04-21 20:38:07",
"idCar": "25965086392742630",
"idCustomer": "25965086392742629",
"idOwnOrg": "25965086392720693",
"initialGatheringTime": "2020-04-21 20:38:00",
"insuranceCompanyAddress": "",
"insuranceCompanyName": "",
"insuranceContacts": "",
"insuranceContactsTelephone": "",
"invoiceStatus": 0,
"maintainType": "GD",
"modifiedTime": "2020-04-21 20:39:51",
"oweAmount": 0.0,
"oweInvoiceAmount": 200.0,
"pkId": "14870306745529267905",
"receiveInvoiceAmount": 0.0,
"sameAsInsuranceCompany": null,
"vin": "LSGJA52H5DH213958",
"memo": "备注",
"idChannel": 25965086392721010,
"channelName": "自然来访",
"mileage": 111.0,
"nextMileage": 115000.2,
"nextMaintainDate": "2020-08-27",
"isDel": 0,
"contactName": "朱芳芳",
"contactSex": "先生",
"contactCellphone": "13566661234",
"contactCredentialsNumber": "320123200812341234",
"contactCredentialsType": "身份证",
"contactDetailAddress": "江苏省南京市鼓楼区中山东路29号"
},
{
"abbreviation": "豆豆新公司",
"amountAll": 300.0,
"amountReal": 300.0,
"balanceStatus": "7100",
"billNo": "GD20200421008",
"billStatus": "6300",
"billTime": "2020-04-21 18:55:00",
"businessLabel": "维修",
"carModel": "别克 凯越 1.5 MT 2013 凯越",
"carNo": "苏A12845",
"cellphone": "13813835555",
"claimInsuranceCompanyName": "",
"claimInsurancePolicyNumber": "",
"commercialInsuranceExpirationDate": "",
"commercialInsuranceNumber": "",
"completeTime": "2020-04-21 18:56:15",
"compulsoryInsuranceExpirationDate": "",
"compulsoryInsuranceNumber": "",
"creationTime": "2020-04-21 18:56:07",
"creator": "吴O山3",
"customer": "韦小宝",
"deliveryTime": "2020-04-21 19:55",
"discountAll": 0.0,
"employee": "吴O山3",
"finishTime": "2020-04-21 18:57:11",
"firstSettlementTime": "2020-04-21 18:56:27",
"idCar": "25965086392742630",
"idCustomer": "25965086392742629",
"idOwnOrg": "25965086392720693",
"initialGatheringTime": "2020-04-21 18:56:27",
"insuranceCompanyAddress": "",
"insuranceCompanyName": "",
"insuranceContacts": "",
"insuranceContactsTelephone": "",
"invoiceStatus": 0,
"maintainType": "GD",
"modifiedTime": "2020-04-21 18:57:12",
"oweAmount": 0.0,
"oweInvoiceAmount": 300.0,
"pkId": "14870306745529267769",
"receiveInvoiceAmount": 0.0,
"sameAsInsuranceCompany": null,
"vin": "LSGJA52H5DH213958",
"memo": "备注",
"idChannel": 25965086392721010,
"channelName": "自然来访",
"mileage": 111.0,
"nextMileage": 115000.2,
"nextMaintainDate": "2020-08-27",
"isDel": 0,
"contactName": "朱芳芳",
"contactSex": "先生",
"contactCellphone": "13566661234",
"contactCredentialsNumber": "320123200812341234",
"contactCredentialsType": "身份证",
"contactDetailAddress": "江苏省南京市鼓楼区中山东路29号"
},
{
"abbreviation": "豆豆新公司",
"amountAll": 200.0,
"amountReal": 200.0,
"balanceStatus": "7100",
"billNo": "GD20200421007",
"billStatus": "6300",
"billTime": "2020-04-21 17:56:00",
"businessLabel": "保养",
"carModel": "别克 凯越 1.5 MT 2013 凯越",
"carNo": "苏A12845",
"cellphone": "13813835555",
"claimInsuranceCompanyName": "",
"claimInsurancePolicyNumber": "",
"commercialInsuranceExpirationDate": "",
"commercialInsuranceNumber": "",
"completeTime": "2020-04-21 17:57:16",
"compulsoryInsuranceExpirationDate": "",
"compulsoryInsuranceNumber": "",
"creationTime": "2020-04-21 17:56:55",
"creator": "吴O山3",
"customer": "韦小宝",
"deliveryTime": "2020-04-21 18:56",
"discountAll": 0.0,
"employee": "吴O山3",
"finishTime": "2020-04-21 17:57:00",
"firstSettlementTime": "2020-04-21 17:57:40",
"idCar": "25965086392742630",
"idCustomer": "25965086392742629",
"idOwnOrg": "25965086392720693",
"initialGatheringTime": "2020-04-21 17:57:00",
"insuranceCompanyAddress": "",
"insuranceCompanyName": "",
"insuranceContacts": "",
"insuranceContactsTelephone": "",
"invoiceStatus": 0,
"maintainType": "GD",
"modifiedTime": "2020-04-21 18:55:23",
"oweAmount": 0.0,
"oweInvoiceAmount": 200.0,
"pkId": "14870306745529267581",
"receiveInvoiceAmount": 0.0,
"sameAsInsuranceCompany": null,
"vin": "LSGJA52H5DH213958",
"memo": "备注",
"idChannel": 25965086392721010,
"channelName": "自然来访",
"mileage": 111.0,
"nextMileage": 115000.2,
"nextMaintainDate": "2020-08-27",
"isDel": 0,
"contactName": "朱芳芳",
"contactSex": "先生",
"contactCellphone": "13566661234",
"contactCredentialsNumber": "320123200812341234",
"contactCredentialsType": "身份证",
"contactDetailAddress": "江苏省南京市鼓楼区中山东路29号"
},
{
"abbreviation": "豆豆新公司",
"amountAll": 200.0,
"amountReal": 200.0,
"balanceStatus": "7100",
"billNo": "GD20200421006",
"billStatus": "6300",
"billTime": "2020-04-21 16:34:00",
"businessLabel": "维修",
"carModel": "别克 凯越 1.5 MT 2013 凯越",
"carNo": "苏A12845",
"cellphone": "13813835555",
"claimInsuranceCompanyName": "",
"claimInsurancePolicyNumber": "",
"commercialInsuranceExpirationDate": "",
"commercialInsuranceNumber": "",
"completeTime": "2020-04-21 16:34:56",
"compulsoryInsuranceExpirationDate": "",
"compulsoryInsuranceNumber": "",
"creationTime": "2020-04-21 16:34:43",
"creator": "吴O山3",
"customer": "韦小宝",
"deliveryTime": "2020-04-21 17:34",
"discountAll": 0.0,
"employee": "吴O山3",
"finishTime": "2020-04-21 16:35:00",
"firstSettlementTime": "2020-04-21 16:35:10",
"idCar": "25965086392742630",
"idCustomer": "25965086392742629",
"idOwnOrg": "25965086392720693",
"initialGatheringTime": "2020-04-21 16:35:00",
"insuranceCompanyAddress": "",
"insuranceCompanyName": "",
"insuranceContacts": "",
"insuranceContactsTelephone": "",
"invoiceStatus": 2,
"maintainType": "GD",
"modifiedTime": "2020-04-21 17:49:52",
"oweAmount": 0.0,
"oweInvoiceAmount": 0.0,
"pkId": "14870306745529267226",
"receiveInvoiceAmount": 200.0,
"sameAsInsuranceCompany": null,
"vin": "LSGJA52H5DH213958",
"memo": "备注",
"idChannel": 25965086392721010,
"channelName": "自然来访",
"mileage": 111.0,
"nextMileage": 115000.2,
"nextMaintainDate": "2020-08-27",
"isDel": 0,
"contactName": "朱芳芳",
"contactSex": "先生",
"contactCellphone": "13566661234",
"contactCredentialsNumber": "320123200812341234",
"contactCredentialsType": "身份证",
"contactDetailAddress": "江苏省南京市鼓楼区中山东路29号"
},
{
"abbreviation": "豆豆新公司",
"amountAll": 200.0,
"amountReal": 180.0,
"balanceStatus": "7100",
"billNo": "GD20200421001",
"billStatus": "6300",
"billTime": "2020-04-21 09:33:00",
"businessLabel": "保养",
"carModel": "别克 凯越 1.5 MT 2013 凯越",
"carNo": "苏A12845",
"cellphone": "13813835555",
"claimInsuranceCompanyName": "",
"claimInsurancePolicyNumber": "",
"commercialInsuranceExpirationDate": "",
"commercialInsuranceNumber": "",
"completeTime": "2020-04-21 09:34:30",
"compulsoryInsuranceExpirationDate": "",
"compulsoryInsuranceNumber": "",
"creationTime": "2020-04-21 09:34:23",
"creator": "吴O山3",
"customer": "韦小宝",
"deliveryTime": "2020-04-21 10:33",
"discountAll": 20.0,
"employee": "吴O山3",
"finishTime": "2020-04-21 09:35:24",
"firstSettlementTime": "2020-04-21 09:35:25",
"idCar": "25965086392742630",
"idCustomer": "25965086392742629",
"idOwnOrg": "25965086392720693",
"initialGatheringTime": "2020-04-21 09:35:24",
"insuranceCompanyAddress": "",
"insuranceCompanyName": "",
"insuranceContacts": "",
"insuranceContactsTelephone": "",
"invoiceStatus": 0,
"maintainType": "GD",
"modifiedTime": "2020-04-21 09:35:25",
"oweAmount": 0.0,
"oweInvoiceAmount": 180.0,
"pkId": "14870306745529266659",
"receiveInvoiceAmount": 0.0,
"sameAsInsuranceCompany": null,
"vin": "LSGJA52H5DH213958",
"memo": "备注",
"idChannel": 25965086392721010,
"channelName": "自然来访",
"mileage": 111.0,
"nextMileage": 115000.2,
"nextMaintainDate": "2020-08-27",
"isDel": 0,
"contactName": "朱芳芳",
"contactSex": "先生",
"contactCellphone": "13566661234",
"contactCredentialsNumber": "320123200812341234",
"contactCredentialsType": "身份证",
"contactDetailAddress": "江苏省南京市鼓楼区中山东路29号"
},
{
"abbreviation": "豆豆新公司",
"amountAll": 200.0,
"amountReal": 200.0,
"balanceStatus": "7100",
"billNo": "GD20200420014",
"billStatus": "6300",
"billTime": "2020-04-20 20:33:00",
"businessLabel": "保养",
"carModel": "别克 凯越 1.5 MT 2013 凯越",
"carNo": "苏A12845",
"cellphone": "13813835555",
"claimInsuranceCompanyName": "",
"claimInsurancePolicyNumber": "",
"commercialInsuranceExpirationDate": "",
"commercialInsuranceNumber": "",
"completeTime": "2020-04-20 20:36:16",
"compulsoryInsuranceExpirationDate": "",
"compulsoryInsuranceNumber": "",
"creationTime": "2020-04-20 20:36:09",
"creator": "吴O山3",
"customer": "韦小宝",
"deliveryTime": "2020-04-20 21:33",
"discountAll": 0.0,
"employee": "吴O山3",
"finishTime": "2020-04-20 20:36:25",
"firstSettlementTime": "2020-04-20 20:36:26",
"idCar": "25965086392742630",
"idCustomer": "25965086392742629",
"idOwnOrg": "25965086392720693",
"initialGatheringTime": "2020-04-20 20:36:25",
"insuranceCompanyAddress": "",
"insuranceCompanyName": "",
"insuranceContacts": "",
"insuranceContactsTelephone": "",
"invoiceStatus": 0,
"maintainType": "GD",
"modifiedTime": "2020-04-20 20:36:27",
"oweAmount": 0.0,
"oweInvoiceAmount": 200.0,
"pkId": "14870306745529266458",
"receiveInvoiceAmount": 0.0,
"sameAsInsuranceCompany": null,
"vin": "LSGJA52H5DH213958",
"memo": "备注",
"idChannel": 25965086392721010,
"channelName": "自然来访",
"mileage": 111.0,
"nextMileage": 115000.2,
"nextMaintainDate": "2020-08-27",
"isDel": 0,
"contactName": "朱芳芳",
"contactSex": "先生",
"contactCellphone": "13566661234",
"contactCredentialsNumber": "320123200812341234",
"contactCredentialsType": "身份证",
"contactDetailAddress": "江苏省南京市鼓楼区中山东路29号"
},
{
"abbreviation": "豆豆新公司",
"amountAll": 700.0,
"amountReal": 640.0,
"balanceStatus": "7100",
"billNo": "GD20200420012",
"billStatus": "6300",
"billTime": "2020-04-20 20:20:00",
"businessLabel": "保养",
"carModel": "别克 凯越 1.5 MT 2013 凯越",
"carNo": "苏A12845",
"cellphone": "13813835555",
"claimInsuranceCompanyName": "",
"claimInsurancePolicyNumber": "",
"commercialInsuranceExpirationDate": "",
"commercialInsuranceNumber": "",
"completeTime": "2020-04-20 20:24:41",
"compulsoryInsuranceExpirationDate": "",
"compulsoryInsuranceNumber": "",
"creationTime": "2020-04-20 20:21:43",
"creator": "吴O山3",
"customer": "韦小宝",
"deliveryTime": "2020-04-20 21:20",
"discountAll": 60.0,
"employee": "吴O山3",
"finishTime": "2020-04-20 20:25:00",
"firstSettlementTime": "2020-04-20 20:25:01",
"idCar": "25965086392742630",
"idCustomer": "25965086392742629",
"idOwnOrg": "25965086392720693",
"initialGatheringTime": "2020-04-20 20:25:00",
"insuranceCompanyAddress": "",
"insuranceCompanyName": "",
"insuranceContacts": "",
"insuranceContactsTelephone": "",
"invoiceStatus": 0,
"maintainType": "GD",
"modifiedTime": "2020-04-20 20:25:01",
"oweAmount": 0.0,
"oweInvoiceAmount": 640.0,
"pkId": "14870306745529266346",
"receiveInvoiceAmount": 0.0,
"sameAsInsuranceCompany": null,
"vin": "LSGJA52H5DH213958",
"memo": "备注",
"idChannel": 25965086392721010,
"channelName": "自然来访",
"mileage": 111.0,
"nextMileage": 115000.2,
"nextMaintainDate": "2020-08-27",
"isDel": 0,
"contactName": "朱芳芳",
"contactSex": "先生",
"contactCellphone": "13566661234",
"contactCredentialsNumber": "320123200812341234",
"contactCredentialsType": "身份证",
"contactDetailAddress": "江苏省南京市鼓楼区中山东路29号"
},
{
"abbreviation": "豆豆新公司",
"amountAll": 12644.0,
"amountReal": 11201.12,
"balanceStatus": "7100",
"billNo": "GD20200420010",
"billStatus": "6300",
"billTime": "2020-04-20 20:14:00",
"businessLabel": "维修",
"carModel": "别克 凯越 1.5 MT 2013 凯越",
"carNo": "苏A12845",
"cellphone": "13813835555",
"claimInsuranceCompanyName": "",
"claimInsurancePolicyNumber": "",
"commercialInsuranceExpirationDate": "",
"commercialInsuranceNumber": "",
"completeTime": "2020-04-20 20:18:54",
"compulsoryInsuranceExpirationDate": "",
"compulsoryInsuranceNumber": "",
"creationTime": "2020-04-20 20:15:55",
"creator": "吴O山3",
"customer": "韦小宝",
"deliveryTime": "2020-04-20 21:14",
"discountAll": 1442.88,
"employee": "吴O山3",
"finishTime": "2020-04-20 20:16:00",
"firstSettlementTime": "2020-04-20 20:16:26",
"idCar": "25965086392742630",
"idCustomer": "25965086392742629",
"idOwnOrg": "25965086392720693",
"initialGatheringTime": "2020-04-20 20:16:00",
"insuranceCompanyAddress": "",
"insuranceCompanyName": "",
"insuranceContacts": "",
"insuranceContactsTelephone": "",
"invoiceStatus": 0,
"maintainType": "GD",
"modifiedTime": "2020-04-20 20:19:08",
"oweAmount": 0.0,
"oweInvoiceAmount": 11201.12,
"pkId": "14870306745529266275",
"receiveInvoiceAmount": 0.0,
"sameAsInsuranceCompany": null,
"vin": "LSGJA52H5DH213958",
"memo": "备注",
"idChannel": 25965086392721010,
"channelName": "自然来访",
"mileage": 111.0,
"nextMileage": 115000.2,
"nextMaintainDate": "2020-08-27",
"isDel": 0,
"contactName": "朱芳芳",
"contactSex": "先生",
"contactCellphone": "13566661234",
"contactCredentialsNumber": "320123200812341234",
"contactCredentialsType": "身份证",
"contactDetailAddress": "江苏省南京市鼓楼区中山东路29号"
},
{
"abbreviation": "豆豆新公司",
"amountAll": 10.0,
"amountReal": 9.0,
"balanceStatus": "7100",
"billNo": "GD20200420009",
"billStatus": "6300",
"billTime": "2020-04-20 19:14:00",
"businessLabel": "维修",
"carModel": "别克 凯越 1.5 MT 2013 凯越",
"carNo": "苏A12845",
"cellphone": "13813835555",
"claimInsuranceCompanyName": "",
"claimInsurancePolicyNumber": "",
"commercialInsuranceExpirationDate": "",
"commercialInsuranceNumber": "",
"completeTime": "2020-04-20 20:05:36",
"compulsoryInsuranceExpirationDate": "",
"compulsoryInsuranceNumber": "",
"creationTime": "2020-04-20 19:14:54",
"creator": "吴O山3",
"customer": "韦小宝",
"deliveryTime": "2020-04-20 20:14",
"discountAll": 1.0,
"employee": "吴O山3",
"finishTime": "2020-04-20 20:03:00",
"firstSettlementTime": "2020-04-20 20:03:49",
"idCar": "25965086392742630",
"idCustomer": "25965086392742629",
"idOwnOrg": "25965086392720693",
"initialGatheringTime": "2020-04-20 20:03:00",
"insuranceCompanyAddress": "",
"insuranceCompanyName": "",
"insuranceContacts": "",
"insuranceContactsTelephone": "",
"invoiceStatus": 0,
"maintainType": "GD",
"modifiedTime": "2020-04-20 20:06:21",
"oweAmount": 0.0,
"oweInvoiceAmount": 9.0,
"pkId": "14870306745529266232",
"receiveInvoiceAmount": 0.0,
"sameAsInsuranceCompany": null,
"vin": "LSGJA52H5DH213958",
"memo": "备注",
"idChannel": 25965086392721010,
"channelName": "自然来访",
"mileage": 111.0,
"nextMileage": 115000.2,
"nextMaintainDate": "2020-08-27",
"isDel": 0,
"contactName": "朱芳芳",
"contactSex": "先生",
"contactCellphone": "13566661234",
"contactCredentialsNumber": "320123200812341234",
"contactCredentialsType": "身份证",
"contactDetailAddress": "江苏省南京市鼓楼区中山东路29号"
},
{
"abbreviation": "豆豆新公司",
"amountAll": 10.0,
"amountReal": 9.0,
"balanceStatus": "7100",
"billNo": "GD20200420008",
"billStatus": "6300",
"billTime": "2020-04-20 19:00:00",
"businessLabel": "美容",
"carModel": "别克 凯越 1.5 MT 2013 凯越",
"carNo": "苏A12845",
"cellphone": "13813835555",
"claimInsuranceCompanyName": "",
"claimInsurancePolicyNumber": "",
"commercialInsuranceExpirationDate": "",
"commercialInsuranceNumber": "",
"completeTime": "2020-04-20 19:01:29",
"compulsoryInsuranceExpirationDate": "",
"compulsoryInsuranceNumber": "",
"creationTime": "2020-04-20 19:01:08",
"creator": "吴O山3",
"customer": "韦小宝",
"deliveryTime": "2020-04-20 20:00",
"discountAll": 1.0,
"employee": "吴O山3",
"finishTime": "2020-04-20 19:01:00",
"firstSettlementTime": "2020-04-20 19:01:38",
"idCar": "25965086392742630",
"idCustomer": "25965086392742629",
"idOwnOrg": "25965086392720693",
"initialGatheringTime": "2020-04-20 19:01:00",
"insuranceCompanyAddress": "",
"insuranceCompanyName": "",
"insuranceContacts": "",
"insuranceContactsTelephone": "",
"invoiceStatus": 0,
"maintainType": "GD",
"modifiedTime": "2020-04-20 20:02:54",
"oweAmount": 0.0,
"oweInvoiceAmount": 9.0,
"pkId": "14870306745529266215",
"receiveInvoiceAmount": 0.0,
"sameAsInsuranceCompany": null,
"vin": "LSGJA52H5DH213958",
"memo": "备注",
"idChannel": 25965086392721010,
"channelName": "自然来访",
"mileage": 111.0,
"nextMileage": 115000.2,
"nextMaintainDate": "2020-08-27",
"isDel": 0,
"contactName": "朱芳芳",
"contactSex": "先生",
"contactCellphone": "13566661234",
"contactCredentialsNumber": "320123200812341234",
"contactCredentialsType": "身份证",
"contactDetailAddress": "江苏省南京市鼓楼区中山东路29号"
}
],
"total": 333
},
"message": "SUCCESS"
}