73.系统费用科目查询(gy.erp.syssubject.get)

马浩栋发表于:2019年01月28日 18:10:29更新于:2019年02月14日 11:11:53

1.1    业务简述

1.2    请求参数

字段名

类型

描述

必填

备注

page_no

int

页码

默认为1

page_size

int

每页大小

默认为10

start_date

datetime

修改时间开始段


end_date

datetime

修改时间结束段


subject_id

Long

系统费用科目ID


Json请求示例:

{
    "appkey": "112194",
    "sessionkey": "754a424bb6874a1fb8a7371f05e83974",
    "method": "gy.erp.syssubject.get",
    "page_no": "1",
    "page_size": "10",
    "sign": "40A4D5619351B832F2D5FE0837A068CD"
}

1.3    响应参数

字段名

类型

描述

必填

备注

success

boolean

成功与否



errorDesc

string

错误信息



subErrorCode

string




errorDesc

string




subErrorDesc

string




requestMethod

string




syssubjectinfos

SysSubjectGetResponseInfo[]

系统费用科目列表



total

int

总记录数



SysSubjectGetResponseInfo:

字段名

类型

描述

必填

备注

create_date

datetime

创建时间



modify_date

datetime

修改时间



subject_id

Long

费用科目ID



subject_code

string

系统费用科目代码



subject_name

string

系统费用科目名称



Json返回示例:

{
    "success": true,
    "errorCode": "",
    "subErrorCode": "",
    "errorDesc": "",
    "subErrorDesc": "",
    "requestMethod": "gy.erp.syssubject.get",
    "total": 3,
    "syssubjectinfos": [{
        "create_date": "2017-09-15 16:47:13",
        "modify_date": "2017-09-15 16:47:13",
        "subject_id": 56246371029,
        "subject_code": "test001",
        "subject_name": "hao"
    }, {
        "create_date": "2017-09-07 20:54:17",
        "modify_date": "2017-09-07 20:54:17",
        "subject_id": 55562018206,
        "subject_code": "99",
        "subject_name": "9090"
    }, {
        "create_date": "2016-12-19 14:22:10",
        "modify_date": "2016-12-19 14:22:10",
        "subject_id": 35523781758,
        "subject_code": "21",
        "subject_name": "21"
    }]
}