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

cn.sexycode.springo.bo.model.BoService Maven / Gradle / Ivy

The newest version!
package cn.sexycode.springo.bo.model;

import cn.sexycode.springo.core.data.db.model.BaseModel;
import lombok.Getter;
import lombok.Setter;

/**
 * @author qinzaizhen
 */
public class BoService extends BaseModel {
    public final static class ServiceType {
        /**
         * http类型服务
         */
        public final static String HTTP = "http";
        /**
         * web类型服务
         */
        public final static String WS = "ws";
    }

    private static final long serialVersionUID = 1L;
    /**
     * 服务配置ID
     */
    protected String id;
    /**
     * 对象定义ID
     */
    @Getter
    @Setter
    protected String defId;
    /**
     * 服务名称
     */
    @Getter
    @Setter
    protected String serviceName;
    /**
     * 所属分组
     */
    @Getter
    @Setter

    protected String group;
    /**
     * 服务类型
     */
    @Getter
    @Setter
    protected String serviceType;
    /**
     * 是否默认配置
     */
    @Getter
    @Setter
    protected char isDefault;
    /**
     * 服务说明
     */
    @Getter
    @Setter
    protected String description;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy