MCPcopy Create free account
hub / github.com/EthanWang-cn/JavaWeb_Mall / Good_List

Class Good_List

src/main/java/smbms/pojo/Good_List.java:3–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package smbms.pojo;
2
3public class Good_List {
4 private int Lid;//对应goods中的Glist_id
5 private String Lname;
6
7 public Good_List() {
8 }
9
10 public Good_List(int lid, String lname) {
11 Lid = lid;
12 Lname = lname;
13 }
14
15 public int getLid() {
16 return Lid;
17 }
18
19 public void setLid(int lid) {
20 Lid = lid;
21 }
22
23 public String getLname() {
24 return Lname;
25 }
26
27 public void setLname(String lname) {
28 Lname = lname;
29 }
30
31 @Override
32 public String toString() {
33 return "Good_List{" +
34 "Lid=" + Lid +
35 ", Lname='" + Lname + '\'' +
36 '}';
37 }
38
39}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected