Task.java 3.51 KB
package com.viontech.fanxing.commons.model;

import com.viontech.fanxing.commons.base.BaseModel;
import java.util.Date;

public class Task extends BaseModel {
    private Long id;

    private String unid;

    private String name;

    private String algType;

    private Float resourceNeed;

    private Integer priority;

    private Long storeConfigId;

    private String vaType;

    private Integer runtimeType;

    private String deviceUnid;

    private String channelUnid;

    private String streamPath;

    private Integer streamType;

    private Date createTime;

    private Integer status;

    private String runtimeConf;

    private String scene;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public String getUnid() {
        return unid;
    }

    public void setUnid(String unid) {
        this.unid = unid == null ? null : unid.trim();
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name == null ? null : name.trim();
    }

    public String getAlgType() {
        return algType;
    }

    public void setAlgType(String algType) {
        this.algType = algType == null ? null : algType.trim();
    }

    public Float getResourceNeed() {
        return resourceNeed;
    }

    public void setResourceNeed(Float resourceNeed) {
        this.resourceNeed = resourceNeed;
    }

    public Integer getPriority() {
        return priority;
    }

    public void setPriority(Integer priority) {
        this.priority = priority;
    }

    public Long getStoreConfigId() {
        return storeConfigId;
    }

    public void setStoreConfigId(Long storeConfigId) {
        this.storeConfigId = storeConfigId;
    }

    public String getVaType() {
        return vaType;
    }

    public void setVaType(String vaType) {
        this.vaType = vaType == null ? null : vaType.trim();
    }

    public Integer getRuntimeType() {
        return runtimeType;
    }

    public void setRuntimeType(Integer runtimeType) {
        this.runtimeType = runtimeType;
    }

    public String getDeviceUnid() {
        return deviceUnid;
    }

    public void setDeviceUnid(String deviceUnid) {
        this.deviceUnid = deviceUnid == null ? null : deviceUnid.trim();
    }

    public String getChannelUnid() {
        return channelUnid;
    }

    public void setChannelUnid(String channelUnid) {
        this.channelUnid = channelUnid == null ? null : channelUnid.trim();
    }

    public String getStreamPath() {
        return streamPath;
    }

    public void setStreamPath(String streamPath) {
        this.streamPath = streamPath == null ? null : streamPath.trim();
    }

    public Integer getStreamType() {
        return streamType;
    }

    public void setStreamType(Integer streamType) {
        this.streamType = streamType;
    }

    public Date getCreateTime() {
        return createTime;
    }

    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

    public Integer getStatus() {
        return status;
    }

    public void setStatus(Integer status) {
        this.status = status;
    }

    public String getRuntimeConf() {
        return runtimeConf;
    }

    public void setRuntimeConf(String runtimeConf) {
        this.runtimeConf = runtimeConf == null ? null : runtimeConf.trim();
    }

    public String getScene() {
        return scene;
    }

    public void setScene(String scene) {
        this.scene = scene == null ? null : scene.trim();
    }
}