zoukankan      html  css  js  c++  java
  • 顶会热词--bean层

    package com.lunwen.bean;
    
    public class data {
        private String title;
        private String abs;
        private String link;
        private String keyword;
        public String getKeyword() {
            return keyword;
        }
        public void setKeyword(String keyword) {
            this.keyword = keyword;
        }
        public String getTitle() {
            return title;
        }
        public void setTitle(String title) {
            this.title = title;
        }
        public String getAbs() {
            return abs;
        }
        public void setAbs(String abs) {
            this.abs = abs;
        }
        public String getLink() {
            return link;
        }
        public void setLink(String link) {
            this.link = link;
        }
    
    }

    lunwen.java

    package com.lunwen.bean;
    
    public class lunwen {
    
        private String abs;
        private String title;
    
        public String getTitle() {
            return title;
        }
    
        public void setTitle(String title) {
            this.title = title;
        }
    
        public String getAbs() {
            return abs;
        }
    
        public void setAbs(String abs) {
            this.abs = abs;
        }
        
        
    }

    word.java

    package com.lunwen.bean;
    
    public class word {
        private String name;
        private int value;
        public String getName() {
            return name;
        }
        public void setName(String name) {
            this.name = name;
        }
        public int getValue() {
            return value;
        }
        public void setValue(int value) {
            this.value = value;
        }
    }
  • 相关阅读:
    03_ if 练习 _ little2big
    uva 11275 3D Triangles
    uva 12296 Pieces and Discs
    uvalive 3218 Find the Border
    uvalive 2797 Monster Trap
    uvalive 4992 Jungle Outpost
    uva 2218 Triathlon
    uvalive 3890 Most Distant Point from the Sea
    uvalive 4728 Squares
    uva 10256 The Great Divide
  • 原文地址:https://www.cnblogs.com/jz-no-bug/p/14908420.html
Copyright © 2011-2022 走看看