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

📄 acceptorresult.java

📁 自己制作的联通CRM,支持客户分类,管理,升级,积分管理等等..
💻 JAVA
字号:
package com.jn0801.DealWithOperation;



/**
 * 生成处理结果的实体
 */

public class acceptorresult  implements java.io.Serializable {


    // Fields    

     private Long nid;
     private Long gnid;
     private Long acceptid;
     private Long dealerid;
     private String dtime;
     private String dresult;
     private String dmark;


    // Constructors

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

    
    /** full constructor */
    public acceptorresult(Long gnid, Long acceptid, Long dealerid, String dtime, String dresult, String dmark) {
        this.gnid = gnid;
        this.acceptid = acceptid;
        this.dealerid = dealerid;
        this.dtime = dtime;
        this.dresult = dresult;
        this.dmark = dmark;
    }

   
    // Property accessors

    public Long getNid() {
        return this.nid;
    }
    
    public void setNid(Long nid) {
        this.nid = nid;
    }

    public Long getGnid() {
        return this.gnid;
    }
    
    public void setGnid(Long gnid) {
        this.gnid = gnid;
    }

    public Long getAcceptid() {
        return this.acceptid;
    }
    
    public void setAcceptid(Long acceptid) {
        this.acceptid = acceptid;
    }

    public Long getDealerid() {
        return this.dealerid;
    }
    
    public void setDealerid(Long dealerid) {
        this.dealerid = dealerid;
    }

    public String getDtime() {
        return this.dtime;
    }
    
    public void setDtime(String dtime) {
        this.dtime = dtime;
    }

    public String getDresult() {
        return this.dresult;
    }
    
    public void setDresult(String dresult) {
        this.dresult = dresult;
    }

    public String getDmark() {
        return this.dmark;
    }
    
    public void setDmark(String dmark) {
        this.dmark = dmark;
    }
   
}

⌨️ 快捷键说明

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