123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- package com.cbs.company.domain;
-
- import java.util.Date;
-
- public class Bag {
-
- private int id;
- private String type;
- private String texture;
- private String gsprice;
- private String bagprice;
- private String gs;
- private String portname;
- private int kc;
- private int kcyj;
- private String startdate;
- private String enddate;
- private int supplysum;
-
- public int getSupplysum() {
- return supplysum;
- }
-
- public void setSupplysum(int supplysum) {
- this.supplysum = supplysum;
- }
-
- public String getStartdate() {
- return startdate;
- }
-
- public void setStartdate(String startdate) {
- this.startdate = startdate;
- }
-
- public String getEnddate() {
- return enddate;
- }
-
- public void setEnddate(String enddate) {
- this.enddate = enddate;
- }
-
- public int getKcyj() {
- return kcyj;
- }
-
- public void setKcyj(int kcyj) {
- this.kcyj = kcyj;
- }
-
-
-
- public int getId() {
- return id;
- }
-
- public void setId(int id) {
- this.id = id;
- }
-
- public String getType() {
- return type;
- }
-
- public void setType(String type) {
- this.type = type;
- }
-
- public String getTexture() {
- return texture;
- }
-
- public int getKc() {
- return kc;
- }
-
- public void setKc(int kc) {
- this.kc = kc;
- }
-
- public void setTexture(String texture) {
- this.texture = texture;
- }
-
- public String getGsprice() {
- return gsprice;
- }
-
- public void setGsprice(String gsprice) {
- this.gsprice = gsprice;
- }
-
- public String getBagprice() {
- return bagprice;
- }
-
- public void setBagprice(String bagprice) {
- this.bagprice = bagprice;
- }
-
- public String getGs() {
- return gs;
- }
-
- public void setGs(String gs) {
- this.gs = gs;
- }
-
- public String getPortname() {
- return portname;
- }
-
- public void setPortname(String portname) {
- this.portname = portname;
- }
- }
|