Newer
Older
huludao / src / main / java / com / newfiber / modules / inspection / entity / PlcSiteInfoEntity.java
@新烽开发者 新烽开发者 on 22 Jul 806 bytes init
package com.newfiber.modules.inspection.entity;

import lombok.Data;

import java.io.Serializable;

/**
 * @author : zhangjun
 * @Project_name:newfiber_haimian_cihu
 * @date:2020/4/23 17:26
 * @email:505724729@qq.com
 * @description:{todo}
 * @Exception: throw {todo}
 */
@Data
public class PlcSiteInfoEntity implements Serializable {
    private static final long serialVersionUID = 1L;

    /**
     * 主键
     */

    private Long id;
    /**
     * 站点编号
     */
    private String stCode;
    /**
     * 站点名称
     */
    private String stName;
    /**
     * 视频设备编码
     */
    private String deviceCode;
    /**
     * 视频通道号
     */
    private Integer channelId;

    private Integer status;

    /**
     * 抽排量
     */
    private Double pumpWater;

}