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

import com.newfiber.modules.inspection.entity.EquInfoEntity;
import java.util.Date;
import java.util.List;
import lombok.Data;

/**
 * 泵站信息表
 * 
 * @author xiey
 * @email sunlightcs@gmail.com
 * @date 2020-09-09 16:49:27
 */
@Data
public class PumpTreeInfo  {

	/**
	 * 
	 */
	private Integer id;
	/**
	 * 泵站编号
	 */
	private String pumpNo;
	/**
	 * 泵站名称
	 */
	private String equName;
	/**
	 * 泵站地址经纬度
	 */
	private String position;
	/**
	 * 日处理水量
	 */
	private String dayProcessing;
	/**
	 * 月处理水量
	 */
	private String monthProcessing;
	/**
	 * 年处理水量
	 */
	private String yearProcessing;
	/**
	 * 能耗
	 */
	private String energyConsumption;
	/**
	 * 
	 */
	private Date createTime;

	private List<EquInfoEntity> equInfoEntityList;

}