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

com.dahuatech.icc.brm.enums.OperatetionEnum Maven / Gradle / Ivy

The newest version!
package com.dahuatech.icc.brm.enums;

public enum OperatetionEnum {
    NULL(0,"NULL"),
    INSERT(1, "插入"),
    UPDATE(2, "更新"),
    DELETE(3, "删除");

    private Integer code;
    private String name;

    private OperatetionEnum(Integer code,String name){
        this.code = code;
        this.name = name;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy