⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 abstractaddressgroup.java

📁 负责公文的传输及一些处理功能
💻 JAVA
字号:
package com.example.gw.addressgroup;



/**
 * AbstractAddressGroup generated by MyEclipse - Hibernate Tools
 */
import com.example.gw.unit.Unit;
public abstract class AbstractAddressGroup  implements java.io.Serializable {


    // Fields    

     private Integer groupId;
     private Unit unit;
     private String groupName;
     private String content;
     private String memo;
     private String printNum;


    // Constructors

    /** default constructor */
    public AbstractAddressGroup() {
    }

    
    /** full constructor */
    public AbstractAddressGroup(Unit unit, String groupName, String content, String memo, String printNum) {
        this.unit = unit;
        this.groupName = groupName;
        this.content = content;
        this.memo = memo;
        this.printNum = printNum;
    }

   
    // Property accessors

    public Integer getGroupId() {
        return this.groupId;
    }
    
    public void setGroupId(Integer groupId) {
        this.groupId = groupId;
    }

    public Unit getUnit() {
        return this.unit;
    }
    
    public void setUnit(Unit unit) {
        this.unit = unit;
    }

    public String getGroupName() {
        return this.groupName;
    }
    
    public void setGroupName(String groupName) {
        this.groupName = groupName;
    }

    public String getContent() {
        return this.content;
    }
    
    public void setContent(String content) {
        this.content = content;
    }

    public String getMemo() {
        return this.memo;
    }
    
    public void setMemo(String memo) {
        this.memo = memo;
    }

    public String getPrintNum() {
        return this.printNum;
    }
    
    public void setPrintNum(String printNum) {
        this.printNum = printNum;
    }
   








}

⌨️ 快捷键说明

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