package com.sunda.spmsoversea.enums;

public enum OverseaWhsMoveEnum {

    /** 调拨任务状态(0删除;1保存;2提交SPMS/库存更新;3提交SAP失败;4提交SAP成功;5已撤销;) */

    OVERSEA_WHS_MOVE_CLOSE("0", "关闭", "Close.", "закрытие."),
    OVERSEA_WHS_MOVE_CREATE("1", "新建", "Create.", "Новый."),
    OVERSEA_WHS_MOVE_UPDATE("1", "更新", "Update.", "Обновление."),
    OVERSEA_WHS_MOVE_SUBMIT("2", "提交SPMS更新库存", "Submit SPMS.", "Представление SPMS Обновление запасов."),
    OVERSEA_WHS_MOVE_SUBMIT_SAP_ERROR("3", "提交SAP失败", "Submit SAP Error.", "Не удалось отправить SAP."),
    OVERSEA_WHS_MOVE_SUBMIT_SAP("4", "提交SAP成功", "Submit SAP Success.", "Отправьте SAP успешно."),
    OVERSEA_WHS_MOVE_CANCEL_SAP("5", "从SAP撤销", "Cancel SAP.", "Скачать SAP."),
    OVERSEA_WHS_MOVE_CANCEL("5", "已撤销", "Cancel.", "Отозван."),
    OVERSEA_WHS_MOVE_CANCEL_ERROR("5", "撤销错误", "Cancel Error.", "Ошибка отмены.")
    ;

    private String code;
    private String descZh;
    private String descEn;
    private String descRu;

    OverseaWhsMoveEnum(String code, String descZh, String descEn, String descRu) {
        this.code = code;
        this.descZh = descZh;
        this.descEn = descEn;
        this.descRu = descRu;
    }

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public String getDescZh() {
        return descZh;
    }

    public void setDescZh(String descZh) {
        this.descZh = descZh;
    }

    public String getDescEn() {
        return descEn;
    }

    public void setDescEn(String descEn) {
        this.descEn = descEn;
    }

	public String getDescRu() {
		return descRu;
	}

	public void setDescRu(String descRu) {
		this.descRu = descRu;
	}
    
}
