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

📄 income.java

📁 crm.customer relationship management
💻 JAVA
字号:
package crm.object.unit;

import java.sql.ResultSet;

//针对incomecall表的bean类
public class Income 
{
    private String callId = "";        //来电ID
    private String customerId = "";    //客户ID
    private String callTime = "";      //来电时间
    private String callMemo = "";      //来电内容
    
    //空的构造方法
    public Income()
    {
    }
    
    //针对rs对象的构造方法
    public Income( ResultSet rs )
        throws Exception
    {
        this.callId = rs.getString("call_id");
        this.customerId = rs.getString("customer_id");
        this.callTime = rs.getString("call_time");
        this.callMemo = rs.getString("call_memo");
    }
    
    //get/set方法
    
    public String getCallId()
    {
        return callId;
    }
    public void setCallId( String callId )
    {
        this.callId = callId;
    }
        
    public String getCustomerId()
    {
        return customerId;
    }
    public void setCustomerId( String customerId )
    {
        this.customerId = customerId;
    }
    
    public String getCallTime()
    {
        return callTime;
    }
    public void setCallTime( String callTime )
    {
        this.callTime = callTime;
    }
    
    public String getCallMemo()
    {
        return callMemo;
    }
    public void setCallMemo( String callMemo )
    {
        this.callMemo = callMemo;
    }
}

⌨️ 快捷键说明

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