• 大小: 9.28MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-30
  • 语言: Java
  • 标签: java、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\.git\COMMIT_EDITMSG

     文件        157  2017-07-01 11:35  666\.git\config

     文件         73  2017-07-01 11:35  666\.git\description

     文件         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-rebase.sample

     文件        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\objects\00\bd468450b949efb283db2266fb23f11784a3e4

     文件         46  2017-07-04 18:58  666\.git\objects\00\eb1dcc7cb8ac3025b43c122ddf56bc2fcd68ba

     文件       5954  2017-07-02 10:37  666\.git\objects\00\fd62152fd60a6ca74342357d1b01206a4236bf

     文件         76  2017-07-03 19:18  666\.git\objects\01\3758f91a077795693b526d3dfd3d1acfe0f6bb

     文件        968  2017-07-02 10:37  666\.git\objects\01\3cfcf54717da54a6e9e14bae9c51ae4d64b145

     文件      18193  2017-07-03 21:25  666\.git\objects\01\fbbcbaa9fd750c456258ebc4a305ceb94adafd

     文件        140  2017-07-01 15:43  666\.git\objects\03\539bae8761058fde43554643eea822728ee5a0

     文件        126  2017-07-04 18:58  666\.git\objects\04\31b3eb928812dae5dd088aefa3214a58c05ee1

     文件        272  2017-07-03 21:26  666\.git\objects\04\fafac1b72e112f77650d8fc400afb9b7638416

     文件       1621  2017-07-01 15:57  666\.git\objects\05\1032663e4d71dd589dee1adcefd61604bd1526

     文件        112  2017-07-04 18:58  666\.git\objects\05\6331ce284d80f25262af4f792c63d853030ba2

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

评论

共有 条评论