admin
2019-03-15 c9f28b430799cc8d40c7a7d99fd0f0eeecff6a5c
fanli/src/main/java/com/yeshi/fanli/entity/bus/su/recommend/SuperRecommendSection.java
@@ -13,7 +13,7 @@
import javax.persistence.Table;
import com.yeshi.fanli.entity.bus.recommend.RecommendSection;
import com.yeshi.fanli.entity.system.System;
import com.yeshi.fanli.entity.system.BusinessSystem;
@Entity
@Table(name = "yeshi_ec_super_recommendsection")
@@ -34,14 +34,12 @@
   private RecommendSection recommendSection;
   @ManyToOne(fetch = FetchType.EAGER)
   @JoinColumn(name = "system_id")
   private System system;
   private BusinessSystem system;
   
   public SuperRecommendSection() {
      // TODO Auto-generated constructor stub
   }
   
   public SuperRecommendSection(RecommendSection recommendSection,
         System system) {
   public SuperRecommendSection(RecommendSection recommendSection, BusinessSystem system) {
      super();
      this.recommendSection = recommendSection;
      this.system = system;
@@ -63,11 +61,11 @@
      this.recommendSection = recommendSection;
   }
   public System getSystem() {
   public BusinessSystem getSystem() {
      return system;
   }
   public void setSystem(System system) {
   public void setSystem(BusinessSystem system) {
      this.system = system;
   }
}