package pwc.taxtech.atms.constant.enums;

public enum EnumModule {
    EnterpriseMaterial(0),
    TrailBalance(1),
    Evidence(2),
    Voucher(3),
    Invoice(4);

    private Integer code;

    EnumModule(Integer code) {
        this.code = code;
    }

    public int getCode() {
        return code;
    }
}