Newer
Older
IRIS_COLLECT / IOM_cs / insertForm / data / dto / ReponseData.cs
yangqianqian on 29 Dec 2020 2 KB first
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace IOM_cs.insertForm.data.dto
{
   public class ReponseResult
    {
        private String CJJG;//采集结果
        private String XXMS;//结果描述

        public string cjjg
        {
            get
            {
                return CJJG;
            }

            set
            {
                CJJG = value;
            }
        }

        public string xxms
        {
            get
            {
                return XXMS;
            }

            set
            {
                XXMS = value;
            }
        }
    }

    public class ReponseData
    {

        private String STATUS_CODE;//服务执行代码
        private String ELAPSED_TIME;//服务执行时间
        private String MESSAGE;//字符串类型
        private String VERSION;//通用返回结果
        private String REQUEST_ID;//字符串类型
        private ReponseResult RESULT;

        public string status_code
        {
            get
            {
                return STATUS_CODE;
            }

            set
            {
                STATUS_CODE = value;
            }
        }

        public string elapsed_time
        {
            get
            {
                return ELAPSED_TIME;
            }

            set
            {
                ELAPSED_TIME = value;
            }
        }

        public string message
        {
            get
            {
                return MESSAGE;
            }

            set
            {
                MESSAGE = value;
            }
        }

        public string version
        {
            get
            {
                return VERSION;
            }

            set
            {
                VERSION = value;
            }
        }

        public string request_id
        {
            get
            {
                return REQUEST_ID;
            }

            set
            {
                REQUEST_ID = value;
            }
        }

        public ReponseResult result
        {
            get
            {
                return RESULT;
            }

            set
            {
                RESULT = value;
            }
        }
    }
}