Newer
Older
huludao / src / main / java / com / newfiber / modules / inspection / enums / EInspectionInfoSource.java
@新烽开发者 新烽开发者 on 22 Jul 644 bytes init
package com.newfiber.modules.inspection.enums;

public enum EInspectionInfoSource {
    /**
     *来源(手动manual/排班表schedule)
     */
    MANUAL("manual","手动"),
    SCHEDULE("schedule","排班表")
    ;
    private String key;
    private String value;

    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        this.key = key;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

    EInspectionInfoSource(String key, String value) {
        this.key = key;
        this.value = value;
    }
}