package com.itjiandan.model;
import java.io.Serializable;
import java.sql.Timestamp;
import java.util.List;
@SuppressWarnings("serial")
public class Authority_Entity implements Serializable{
   private Integer id;
   private String name;
   private String description;
   private String myform;
   private String method;
   private String path;
   private Timestamp createdate;
   private Timestamp reworkdate;
   private Integer state;
   private Integer pid;
   private List<Authority_Entity> list;
                            
public Authority_Entity() {
}
public Authority_Entity(Integer id, String name, String description,
        String myform,String method,String path, Timestamp createdate, Timestamp reworkdate, Integer state,
        Integer pid) {
                             
    this.id = id;
    this.name = name;
    this.description = description;
    this.myform = myform;
    this.method = method;
    this.path = path;
    this.createdate = createdate;
    this.reworkdate = reworkdate;
    this.state = state;
    this.pid = pid;
}
public Integer getId() {
    return id;
}
public void setId(Integer id) {
    this.id = id;
}
public String getName() {
    return name;
}
public void setName(String name) {
    this.name = name;
}
public String getDescription() {
    return description;
}
public void setDescription(String description) {
    this.description = description;
}
public String getPath() {
    return path;
}
public void setPath(String path) {
    this.path = path;
}
public Timestamp getCreatedate() {
    return createdate;
}
public void setCreatedate(Timestamp createdate) {
    this.createdate = createdate;
}
public Timestamp getReworkdate() {
    return reworkdate;
}
public void setReworkdate(Timestamp reworkdate) {
    this.reworkdate = reworkdate;
}
public Integer getState() {
    return state;
}
public void setState(Integer state) {
    this.state = state;
}
public Integer getPid() {
    return pid;
}
public void setPid(Integer pid) {
    this.pid = pid;
}
public List<Authority_Entity> getList() {
    return list;
}
public void setList(List<Authority_Entity> list) {
    this.list = list;
}
public String getMyform() {
    return myform;
}
public void setMyform(String myform) {
    this.myform = myform;
}
public String getMethod() {
    return method;
}
public void setMethod(String method) {
    this.method = method;
}
                            
}



package com.itjiandan.model;
import java.io.Serializable;
import java.sql.Timestamp;
@SuppressWarnings("serial")
public class Group_Entity implements Serializable{
      private Integer id;
      private String name;
      private Timestamp createdate;
      private Timestamp reworkdate;
      private Integer state;
                           
    public Group_Entity() {
    }
    public Group_Entity(Integer id, String name, Timestamp createdate,
            Timestamp reworkdate, Integer state) {
        this.id = id;
        this.name = name;
        this.createdate = createdate;
        this.reworkdate = reworkdate;
        this.state = state;
    }
    public Integer getState() {
        return state;
    }
    public void setState(Integer state) {
        this.state = state;
    }
    public Integer getId() {
        return id;
    }
    public void setId(Integer id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public Timestamp getCreatedate() {
        return createdate;
    }
    public void setCreatedate(Timestamp createdate) {
        this.createdate = createdate;
    }
    public Timestamp getReworkdate() {
        return reworkdate;
    }
    public void setReworkdate(Timestamp reworkdate) {
        this.reworkdate = reworkdate;
    }
                           
}



package com.itjiandan.model;
import java.io.Serializable;
import java.sql.Timestamp;
@SuppressWarnings("serial")
public class Commodity_Entity implements Serializable{
    private Integer id;
    private Integer number;
    private String name;
    private float price;
    private String path;
    private String link;
    private Timestamp createdate;
    private Timestamp reworkdate;
    private Integer state;
             
    public Commodity_Entity() {
    }
    public Commodity_Entity(Integer id, Integer number, String name,
            float price, String path, String link, Timestamp createdate,
            Timestamp reworkdate, Integer state) {
        this.id = id;
        this.number = number;
        this.name = name;
        this.price = price;
        this.path = path;
        this.link = link;
        this.createdate = createdate;
        this.reworkdate = reworkdate;
        this.state = state;
    }
    public Integer getId() {
        return id;
    }
    public void setId(Integer id) {
        this.id = id;
    }
    public Integer getNumber() {
        return number;
    }
    public void setNumber(Integer number) {
        this.number = number;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public float getPrice() {
        return price;
    }
    public void setPrice(float price) {
        this.price = price;
    }
    public String getPath() {
        return path;
    }
    public void setPath(String path) {
        this.path = path;
    }
    public String getLink() {
        return link;
    }
    public void setLink(String link) {
        this.link = link;
    }
    public Timestamp getCreatedate() {
        return createdate;
    }
    public void setCreatedate(Timestamp createdate) {
        this.createdate = createdate;
    }
    public Timestamp getReworkdate() {
        return reworkdate;
    }
    public void setReworkdate(Timestamp reworkdate) {
        this.reworkdate = reworkdate;
    }
    public Integer getState() {
        return state;
    }
    public void setState(Integer state) {
        this.state = state;
    }
             
}


package com.itjiandan.model;
import java.io.Serializable;
import java.sql.Timestamp;
import java.util.List;
@SuppressWarnings("serial")
public class CommodityClass_Entity implements Serializable {
     private Integer id;
     private String name;
     private String path;
     private Timestamp createdate;
     private Timestamp reworkdate;
     private Integer state;
     private Integer pid;
     private List<CommodityClass_Entity> list;
           
    public CommodityClass_Entity() {
    }
    public CommodityClass_Entity(Integer id, String name, String path,
            Timestamp createdate, Timestamp reworkdate, Integer state, Integer pid) {
        this.id = id;
        this.name = name;
        this.path = path;
        this.createdate = createdate;
        this.reworkdate = reworkdate;
        this.state = state;
        this.pid = pid;
    }
    public Integer getId() {
        return id;
    }
    public void setId(Integer id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getPath() {
        return path;
    }
    public void setPath(String path) {
        this.path = path;
    }
    public Timestamp getCreatedate() {
        return createdate;
    }
    public void setCreatedate(Timestamp createdate) {
        this.createdate = createdate;
    }
    public Timestamp getReworkdate() {
        return reworkdate;
    }
    public void setReworkdate(Timestamp reworkdate) {
        this.reworkdate = reworkdate;
    }
    public Integer getState() {
        return state;
    }
    public void setState(Integer state) {
        this.state = state;
    }
    public Integer getPid() {
        return pid;
    }
    public void setPid(Integer pid) {
        this.pid = pid;
    }
    public List<CommodityClass_Entity> getList() {
        return list;
    }
    public void setList(List<CommodityClass_Entity> list) {
        this.list = list;
    }
           
}



package com.itjiandan.model;
import java.io.Serializable;
import java.sql.Timestamp;
@SuppressWarnings("serial")
public class User_Entity implements Serializable {
    private Integer id;
    private String name;
    private String pass;
    private Integer age;
    private String sex;
    private String job;
    private String mail;
    private Timestamp createdate;
    private Timestamp reworkdate;
    private Integer state;
    private String gname;
    public User_Entity(){
          
    }
      
    public User_Entity(Integer id, String name, String pass, Integer age,
            String sex, String job, String mail, Timestamp createdate,
            Timestamp reworkdate, Integer state) {
          
        this.id = id;
        this.name = name;
        this.pass = pass;
        this.age = age;
        this.sex = sex;
        this.job = job;
        this.mail = mail;
        this.createdate = createdate;
        this.reworkdate = reworkdate;
        this.state = state;
    }
    public Integer getState() {
        return state;
    }
    public void setState(Integer state) {
        this.state = state;
    }
    public String getGname() {
        return gname;
    }
    public void setGname(String gname) {
        this.gname = gname;
    }
    public Integer getId() {
        return id;
    }
    public void setId(Integer id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getPass() {
        return pass;
    }
    public void setPass(String pass) {
        this.pass = pass;
    }
    public Integer getAge() {
        return age;
    }
    public void setAge(Integer age) {
        this.age = age;
    }
    public String getSex() {
        return sex;
    }
    public void setSex(String sex) {
        this.sex = sex;
    }
    public String getJob() {
        return job;
    }
    public void setJob(String job) {
        this.job = job;
    }
    public String getMail() {
        return mail;
    }
    public void setMail(String mail) {
        this.mail = mail;
    }
    public Timestamp getCreatedate() {
        return createdate;
    }
    public void setCreatedate(Timestamp createdate) {
        this.createdate = createdate;
    }
    public Timestamp getReworkdate() {
        return reworkdate;
    }
    public void setReworkdate(Timestamp reworkdate) {
        this.reworkdate = reworkdate;
    }
      
}