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

org.openurp.code.job.model.nation.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.code.job.model

import org.beangle.data.model.annotation.code
import org.openurp.code.CodeBean

/**
 * 职务类别
 */
@code("nation")
class DutyType extends CodeBean

/**
 * 行政职务级别
 */
@code("nation")
class DutyGrade extends CodeBean {
  /**
   * 行政职务类别
   */
  var dutyType: DutyType = _
}

/**
 * 职称等级
 */
@code("nation")
class ProfessionalGrade extends CodeBean

/**
 * 岗位类别
 */
@code("nation")
class PostType extends CodeBean

/**
 * 岗位等级
 */
@code("nation")
class PostGrade extends CodeBean

/**
 * 职称
 * 本代码引自GB/T 8561-2001,
 *
 * @author chaostone
 * @since 2005-9-7
 */
@code("nation")
class ProfessionalTitle extends CodeBean {
  /**
   * 职称等级
   */
  var grade: Option[ProfessionalGrade] = None
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy