📄 lot1.java
字号:
package com.zh.util;
import java.sql.*;
import com.zh.conpool.Condata;
public class Lot1{
private String id;
private String client;
private String contractname;
private String ItemName;
private int lotmoney;
private String lotdate;
private String endtime;
private String lotman;
public void setId(String newid){
this.id=newid;
}
public String getId(){
return id;
}
public void setClient(String newclient){
this.client=newclient;
}
public String getClient(){
return client;
}
public void setContractname(String newcontract){
this.contractname=newcontract;
}
public String getContractname(){
return contractname;
}
public void setItem(String newitem){
this.ItemName=newitem;
}
public String getItem(){
return ItemName;
}
public void setMoney(int newmoney){
this.lotmoney=newmoney;
}
public int getMoney(){
return lotmoney;
}
public void setDate(String newdate){
this.lotdate=newdate;
}
public String getDate(){
return lotdate;
}
public void setTime(String newtime){
this.endtime=newtime;
}
public String getTime(){
return endtime;
}
public void setMan(String newman){
this.lotman=newman;
}
public String getMan(){
return lotman;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -