基于JSP的团购系统源码+数据库


基于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.gitCOMMIT_EDITMSG

     文件        157  2017-07-01 11:35  666.gitconfig

     文件         73  2017-07-01 11:35  666.gitdescription

     文件         23  2017-07-01 11:35  666.gitHEAD

     文件        478  2017-07-01 11:35  666.githooksapplypatch-msg.sample

     文件        896  2017-07-01 11:35  666.githookscommit-msg.sample

     文件        189  2017-07-01 11:35  666.githookspost-update.sample

     文件        424  2017-07-01 11:35  666.githookspre-applypatch.sample

     文件       1642  2017-07-01 11:35  666.githookspre-commit.sample

     文件       1348  2017-07-01 11:35  666.githookspre-push.sample

     文件       4951  2017-07-01 11:35  666.githookspre-rebase.sample

     文件        544  2017-07-01 11:50  666.githookspre-receive.sample

     文件       1239  2017-07-01 11:35  666.githooksprepare-commit-msg.sample

     文件       3610  2017-07-01 11:35  666.githooksupdate.sample

     文件      16816  2017-07-06 22:31  666.gitindex

     文件        240  2017-07-01 11:35  666.gitinfoexclude

     文件       1969  2017-07-04 10:03  666.gitlogsHEAD

     文件       1969  2017-07-04 10:03  666.gitlogs
efsheadsmaster

     文件        232  2017-07-04 09:20  666.gitobjects0d468450b949efb283db2266fb23f11784a3e4

     文件         46  2017-07-04 18:58  666.gitobjects0eb1dcc7cb8ac3025b43c122ddf56bc2fcd68ba

     文件       5954  2017-07-02 10:37  666.gitobjects0fd62152fd60a6ca74342357d1b01206a4236bf

     文件         76  2017-07-03 19:18  666.gitobjects13758f91a077795693b526d3dfd3d1acfe0f6bb

     文件        968  2017-07-02 10:37  666.gitobjects13cfcf54717da54a6e9e14bae9c51ae4d64b145

     文件      18193  2017-07-03 21:25  666.gitobjects1fbbcbaa9fd750c456258ebc4a305ceb94adafd

     文件        140  2017-07-01 15:43  666.gitobjects3539bae8761058fde43554643eea822728ee5a0

     文件        126  2017-07-04 18:58  666.gitobjects431b3eb928812dae5dd088aefa3214a58c05ee1

     文件        272  2017-07-03 21:26  666.gitobjects4fafac1b72e112f77650d8fc400afb9b7638416

     文件       1621  2017-07-01 15:57  666.gitobjects51032663e4d71dd589dee1adcefd61604bd1526

     文件        112  2017-07-04 18:58  666.gitobjects56331ce284d80f25262af4f792c63d853030ba2

............此处省略1126个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)