文档
测试

销售计划列表

POST
http://localhost:8080/app/salePlan/getSalePlanList

接口描述

销售计划列表 加上分页

请求参数

参数名
类型
描述
必填
minecode
string
煤矿
必填
startDate
date
创建开始时间
必填
endDate
date
创建结束时间
必填
buycode
string
采购单位id
必填
pageNo
int
当前页
必填
pageSize
int
页数
必填

响应参数

参数名
类型
描述
必填
success
boolean
示例:true
必填
errorCode
string
示例:-1
必填
msg
string
示例:查询成功!
必填
list
array
数据列表
必填
id
string
示例:100020200224001
必填
remarks
string
示例:备注信息
必填
createBy
object
数据字典
必填
id
string
示例:1
必填
delFlag
string
示例:0
必填
loginFlag
string
示例:1
必填
roleNames
string
示例:
必填
admin
boolean
示例:true
必填
createDate
string
示例:2020-02-24 11:31:20
必填
updateBy
object
数据字典
必填
id
string
示例:1
必填
delFlag
string
示例:0
必填
loginFlag
string
示例:1
必填
roleNames
string
示例:
必填
admin
boolean
示例:true
必填
updateDate
string
示例:2020-02-24 11:31:20
必填
delFlag
string
示例:0
必填
minecode
object
单位
必填
id
string
示例:4
必填
delFlag
string
示例:0
必填
name
string
单位名:石圪台
必填
sort
number
示例:30
必填
hasChildren
boolean
示例:false
必填
type
string
示例:2
必填
parentId
string
示例:0
必填
customer
object
客户编号
必填
id
string
示例:6
必填
delFlag
string
示例:0
必填
name
string
客户名:巴图塔集装站
必填
sort
number
示例:30
必填
hasChildren
boolean
示例:false
必填
type
string
示例:2
必填
parentId
string
示例:0
必填
var
object
物资编号
必填
id
string
示例:2
必填
delFlag
string
示例:0
必填
vname
string
物资名:瘦焦煤
必填
buyPlanno
string
关联采购计划号:35
必填
planType
string
计划类型:销售计划
必填
planAmount
number
计划量:600
必填
shipmentAmount
number
已发量:0
必填
surplusAmount
number
剩余量:600
必填
planCount
number
计划车数:20
必填
shipCount
number
已发车数:0
必填
surplusCount
number
剩余车数:20
必填
bolusAmount
number
追加量:0
必填
startTime
string
示例:2020-02-01 00:00:00
必填
endTime
string
示例:2020-03-01 00:00:00
必填
auditFlag
string
审核标志:"已审核"
必填
clearFlag
string
清退标志:"作废"
必填
company
object
创建人单位
必填
id
string
示例:1
必填
delFlag
string
示例:0
必填
name
string
示例:乌兰集团
必填
sort
number
示例:30
必填
hasChildren
boolean
示例:false
必填
type
string
示例:2
必填
parentId
string
示例:0
必填
office
object
创建人部门
必填
id
string
示例:3
必填
delFlag
string
示例:0
必填
name
string
示例:集团销售部门
必填
sort
number
示例:30
必填
hasChildren
boolean
示例:false
必填
type
string
示例:2
必填
parentId
string
示例:0
必填
total
number
示例:1
必填

说明 / 示例

{ "success": true, "errorCode": "-1", "msg": "查询成功!", "list": [ { "id": "100020200224001", "remarks": "备注信息", //备注信息 "createBy": { "id": "1", "delFlag": "0", "loginFlag": "1", "roleNames": "", "admin": true }, "createDate": "2020-02-24 11:31:20", "updateBy": { "id": "1", "delFlag": "0", "loginFlag": "1", "roleNames": "", "admin": true }, "updateDate": "2020-02-24 11:31:20", "delFlag": "0", "minecode": { "id": "4", "delFlag": "0", "name": "石圪台",//公司 "sort": 30, "hasChildren": false, "type": "2", "parentId": "0" }, "customer": { "id": "6", "delFlag": "0", "name": "巴图塔集装站",// 客户 "sort": 30, "hasChildren": false, "type": "2", "parentId": "0" }, "var": { "id": "2", "delFlag": "0", "vname": "瘦焦煤"// 物资 }, "buyPlanno": "35",// 关联采购计划号 "planType": "0",// 计划类型 "planAmount": 600,// 计划量 "shipmentAmount": 0,// 已发量 "surplusAmount": 600,// 剩余量 "planCount": 20,// 计划车数 "shipCount": 0,// 已发车数 "surplusCount": 20,// 剩余车数 "bolusAmount": 0,// 追加量 "startTime": "2020-02-01 00:00:00",// 开始时间 "endTime": "2020-03-01 00:00:00",// 结束时间 "auditFlag": "1",// 审核标志 "clearFlag": "0",// 清退标志 "company": { "id": "1", "delFlag": "0", "name": "乌兰集团", "sort": 30, "hasChildren": false, "type": "2", "parentId": "0" }, "office": { "id": "3", "delFlag": "0", "name": "集团销售部门", "sort": 30, "hasChildren": false, "type": "2", "parentId": "0" } }, ], "total": 1 }