All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openurp.prac.innovation.model.DefaultMapping.scala Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2014, The OpenURP Software.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see .
 */

package org.openurp.prac.innovation.model

import org.beangle.data.orm.MappingModule

class DefaultMapping extends MappingModule {

  def binding(): Unit = {
    defaultCache("openurp.innovation", "read-write")

    bind[Member] declare { e =>
      index("", true, e.project, e.std)
    }

    bind[Project] declare { e =>
      e.members is depends("project")
      e.materials is depends("project")
      e.levels is depends("project")
      e.instructors is ordered
    }

    bind[Intro] declare { e =>
      e.summaries is length(500)
      e.innovations is length(300)
      e.products is length(300)
    }

    bind[ProjectCategory].cacheable()
    bind[ProjectLevel].cacheable()
    bind[ProjectState].cacheable()
    bind[LevelJounal]

    bind[Batch].declare { e =>
      e.stages is depends("batch")
    }.cacheable()

    bind[Stage].cacheable()

    bind[StageType].declare { e =>
      e.children is depends("parent")
    }.cacheable()

    bind[Material].declare { e =>
      e.fileName is length(200)
    }

    bind[Closure].declare { e =>
      e.exemptionReason is length(200)
    }

    bind[Expert].declare { e =>
      e.name is length(50)
      e.code is length(20)
      e.intro is length(300)
    }

    bind[InitReviewGroup]
    bind[InitReview].declare { e =>
      e.details is depends("review")
    }
    bind[InitReviewDetail].declare { e =>
      e.comments is length(600)
    }

    bind[ClosureReviewGroup]
    bind[ClosureReview].declare { e =>
      e.details is depends("review")
    }
    bind[ClosureReviewDetail].declare { e =>
      e.comments is length(600)
    }

    bind[PromotionDefenseGroup].declare { e =>
      e.members is depends("group")
    }

    bind[PromotionDefenseMember].declare { e =>
      index("", true, e.group, e.idx)
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy