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

com.kangaroohy.dingtalk.entity.enums.BtnOrientation Maven / Gradle / Ivy

The newest version!
package com.kangaroohy.dingtalk.entity.enums;

/**
 * 类 BtnOrientation 功能描述:
 *
 * @author kangaroo hy
 * @version 0.0.1
 * @date 2022/06/29 14:38
 */
public enum BtnOrientation {
    /**
     * 按钮布局
     */
    VERTICAL("0", "竖向"),
    HORIZONTAL("1", "横向");

    private final String code;

    private final String desc;

    BtnOrientation(String code, String desc) {
        this.code = code;
        this.desc = desc;
    }

    public String getCode() {
        return code;
    }

    public String getDesc() {
        return desc;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy