资源简介
基于jsp的在线团购系统 ,开发工具:mysql、myeclipse
代码片段和文件信息
package com.shop.condb;
/**
* AbstractMember entity provides the base persistence definition of the Member
* entity. @author MyEclipse Persistence Tools
*/
public abstract class AbstractMember implements java.io.Serializable {
// Fields
private Integer mid;
private String mname;
private Integer tid;
private Integer isC;
// Constructors
/** default constructor */
public AbstractMember() {
}
/** minimal constructor */
public AbstractMember(Integer mid) {
this.mid = mid;
}
/** full constructor */
public AbstractMember(Integer mid String mname Integer tid Integer isC) {
this.mid = mid;
this.mname = mname;
this.tid = tid;
this.isC = isC;
}
// Property accessors
public Integer getMid() {
return this.mid;
}
public void setMid(Integer mid) {
this.mid = mid;
}
public String getMname() {
return this.mname;
}
public void setMname(String mname) {
this.mname = mname;
}
public Integer getTid() {
return this.tid;
}
public void setTid(Integer tid) {
this.tid = tid;
}
public Integer getIsC() {
return this.isC;
}
public void setIsC(Integer isC) {
this.isC = isC;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1452 2017-06-30 09:31 666\.classpath
文件 3239 2017-07-04 10:03 666\.git\COMMIT_EDITMSG
文件 157 2017-07-01 11:35 666\.git\config
文件 73 2017-07-01 11:35 666\.git\desc
文件 23 2017-07-01 11:35 666\.git\HEAD
文件 478 2017-07-01 11:35 666\.git\hooks\applypatch-msg.sample
文件 896 2017-07-01 11:35 666\.git\hooks\commit-msg.sample
文件 189 2017-07-01 11:35 666\.git\hooks\post-update.sample
文件 424 2017-07-01 11:35 666\.git\hooks\pre-applypatch.sample
文件 1642 2017-07-01 11:35 666\.git\hooks\pre-commit.sample
文件 1348 2017-07-01 11:35 666\.git\hooks\pre-push.sample
文件 4951 2017-07-01 11:35 666\.git\hooks\pre-reba
文件 544 2017-07-01 11:50 666\.git\hooks\pre-receive.sample
文件 1239 2017-07-01 11:35 666\.git\hooks\prepare-commit-msg.sample
文件 3610 2017-07-01 11:35 666\.git\hooks\update.sample
文件 16816 2017-07-06 22:31 666\.git\index
文件 240 2017-07-01 11:35 666\.git\info\exclude
文件 1969 2017-07-04 10:03 666\.git\logs\HEAD
文件 1969 2017-07-04 10:03 666\.git\logs\refs\heads\master
文件 232 2017-07-04 09:20 666\.git\ob
文件 46 2017-07-04 18:58 666\.git\ob
文件 5954 2017-07-02 10:37 666\.git\ob
文件 76 2017-07-03 19:18 666\.git\ob
文件 968 2017-07-02 10:37 666\.git\ob
文件 18193 2017-07-03 21:25 666\.git\ob
文件 140 2017-07-01 15:43 666\.git\ob
文件 126 2017-07-04 18:58 666\.git\ob
文件 272 2017-07-03 21:26 666\.git\ob
文件 1621 2017-07-01 15:57 666\.git\ob
文件 112 2017-07-04 18:58 666\.git\ob
............此处省略1126个文件信息
- 上一篇:java 音乐播放器
- 下一篇:设计实现一个编译器(java)
评论
共有 条评论