yujian
2019-03-27 f4fa74c0347e2e82a4df10d0a4a41fa6b45c9325
fanli/src/main/java/com/yeshi/fanli/entity/bus/su/clazz/SuperGoodsClass.java
@@ -13,7 +13,7 @@
import javax.persistence.Table;
import com.yeshi.fanli.entity.bus.clazz.GoodsClass;
import com.yeshi.fanli.entity.system.System;
import com.yeshi.fanli.entity.system.BusinessSystem;
@Entity
@Table(name = "yeshi_ec_super_goodsclass")
@@ -33,13 +33,12 @@
   private GoodsClass goodsClass;
   @ManyToOne(fetch = FetchType.EAGER)
   @JoinColumn(name = "system_id")
   private System system;
   private BusinessSystem system;
   public SuperGoodsClass() {
      // TODO Auto-generated constructor stub
   }
   
   public SuperGoodsClass(GoodsClass goodsClass, System system) {
   public SuperGoodsClass(GoodsClass goodsClass, BusinessSystem system) {
      super();
      this.goodsClass = goodsClass;
      this.system = system;
@@ -61,11 +60,11 @@
      this.goodsClass = goodsClass;
   }
   public System getSystem() {
   public BusinessSystem getSystem() {
      return system;
   }
   public void setSystem(System system) {
   public void setSystem(BusinessSystem system) {
      this.system = system;
   }
}