zoukankan      html  css  js  c++  java
  • ExtFormReturn,ext

    package cn.edu.hbcf.common.vo;
     
    public class ExtFormReturn {
        /**
         * 是否成功
         */
        private boolean success;
        /**
         * 数据
         */
        private Object data;
        
        
        private Object msg;
        
        
        public ExtFormReturn(){
            
        }
        
        public ExtFormReturn(boolean success){
            this.success = success;
        }
        
        public ExtFormReturn(boolean success,Object data){
            this.success = success;
            this.data = data;
        }
        
        public ExtFormReturn(boolean success,Object data,Object msg){
            this.success = success;
            this.data = data;
            this.msg = msg;
        }
        /**
         * @return the success
         */
        public boolean isSuccess() {
            return success;
        }
        /**
         * @param success the success to set
         */
        public void setSuccess(boolean success) {
            this.success = success;
        }
        /**
         * @return the data
         */
        public Object getData() {
            return data;
        }
        /**
         * @param data the data to set
         */
        public void setData(Object data) {
            this.data = data;
        }
    
        /**
         * @return the msg
         */
        public Object getMsg() {
            return msg;
        }
    
        /**
         * @param msg the msg to set
         */
        public void setMsg(Object msg) {
            this.msg = msg;
        }
        
    
    }
  • 相关阅读:
    Codeforces 691A Fashion in Berland
    HDU 5741 Helter Skelter
    HDU 5735 Born Slippy
    HDU 5739 Fantasia
    HDU 5738 Eureka
    HDU 5734 Acperience
    HDU 5742 It's All In The Mind
    POJ Euro Efficiency 1252
    AtCoder Beginner Contest 067 C
    AtCoder Beginner Contest 067 D
  • 原文地址:https://www.cnblogs.com/zrui-xyu/p/4942835.html
Copyright © 2011-2022 走看看