itemdto.java~1~

来自「一个基于Java的新闻发布系统」· JAVA~1~ 代码 · 共 86 行

JAVA~1~
86
字号
package com.hope.itissue.index_info.bean;

public class ItemDTO {
    private String ID;
    private String ParentID;
    private String DnetName;
    private String DnetContent;
    private String DnetDate;
    private String DnetImage;
    private String IsUse;
    private String sourceFileName;
    private String writeFileName;
    public void setSourceFileName(String sourceFileName) {
        this.sourceFileName = sourceFileName;
    }

    public void setWriteFileName(String writeFileName) {
        this.writeFileName = writeFileName;
    }

    public String getSourceFileName() {
        return sourceFileName;
    }

    public String getWriteFileName() {
        return writeFileName;
    }

    public void setIsUse(String IsUse) {
        this.IsUse = IsUse;
    }

    public String getIsUse() {
        return IsUse;
    }

    public void setDnetImage(String DnetImage) {
        this.DnetImage = DnetImage;
    }

    public String getDnetImage() {
        return DnetImage;
    }

    public void setDnetDate(String DnetDate) {
        this.DnetDate = DnetDate;
    }

    public String getDnetDate() {
        return DnetDate;
    }

    public void setDnetContent(String DnetContent) {
        this.DnetContent = DnetContent;
    }

    public String getDnetContent() {
        return DnetContent;
    }

    public void setDnetName(String DnetName) {
        this.DnetName = DnetName;
    }

    public String getDnetName() {
        return DnetName;
    }

    public void setParentID(String ParentID) {
        this.ParentID = ParentID;
    }

    public String getParentID() {
        return ParentID;
    }

    public void setID(String ID) {
        this.ID = ID;
    }

    public String getID() {
        return ID;
    }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?