class RelType:
    employee=1
    contact =2
    address =3
    department=4
    branch=5


class SchedulerStatus:
    STARTED = 'start'
    RUNNING = 'running'
    FINISHED='finish'
    FAILED = 'fail'

class SchedulerJobName:
    employee = 1
    department = 2

class EmployeeGender:
    male=1
    female=2
    others=3


