Commit 86c7626d by chentian

增加以人模块

parent fc809ff2
package com.founder.commonutils.esEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
/**
* <p>
*
* </p>
*
* @author chent
* @since 2021-04-09
*/
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("TB_ZY_CAMERA")
@ApiModel(value="TbZyCamera对象", description="")
public class TbZyCamera implements Serializable {
private static final long serialVersionUID = 1L;
@TableField("ID")
private Long id;
@TableField("CREATED")
private String created;
@TableField("UPDATED")
private String updated;
@TableField("GEO_STRING")
private String geoString;
@TableField("GEOMETRY")
private String geometry;
@TableField("ADDR")
private String addr;
@TableField("CAPABILITY")
private Double capability;
@TableField("CITY")
private String city;
@TableField("COUNTY")
private String county;
@TableField("COVER")
private String cover;
@TableField("NAME")
private String name;
@TableField("PASSWORD")
private String password;
@TableField("PORT")
private Double port;
@TableField("RTSPURI")
private String rtspuri;
@TableField("STATION_ID")
private Long stationId;
@TableField("STATUS")
private Double status;
@TableField("TYPE")
private Long type;
@TableField("URI")
private String uri;
@TableField("USERNAME")
private String username;
@TableField("SHORT_NAME")
private String shortName;
@TableField("IN_STATION")
private Long inStation;
@TableField("LIVEURL")
private String liveurl;
@TableField("PARAMETER")
private String parameter;
@TableField("CODE")
private String code;
@TableField("C_TYPE")
private Double cType;
@TableField("DISTRICT_ID")
private Long districtId;
@TableField("NODE_ID")
private Long nodeId;
@TableField("DEF_ALG")
private Long defAlg;
@TableField("ONLINES")
private Double onlines;
@TableField("SNAP")
private Double snap;
@TableField("APP_TYPE")
private String appType;
@TableField("APP_VALUE")
private String appValue;
@TableField("CAMERA_CODE")
private String cameraCode;
@TableField("PLACE_TYPE_ID")
private Double placeTypeId;
@TableField("DEVICE_TYPE_ID")
private Double deviceTypeId;
@TableField("CAPTURE_BANK_ID")
private Long captureBankId;
@TableField("SNAPLEVEL2")
private Double snaplevel2;
@TableField("REMARKS")
private String remarks;
@TableField("PROJECT_TYPE")
private Double projectType;
@TableField("SNAP_THRESHOLD")
private Double snapThreshold;
@TableField("OTHER_INFO")
private String otherInfo;
@TableField("POLENUM")
private String polenum;
@TableField("SN_CODE")
private String snCode;
@TableField("MAC_ADDRESS")
private String macAddress;
@TableField("IFBOX_CAMERA_ID")
private Long ifboxCameraId;
@TableField("IFBOX_RSTSPURI")
private String ifboxRstspuri;
@TableField("IFBOX_CAPBILITY")
private Double ifboxCapbility;
@TableField("IFBOX_HEIGHT")
private String ifboxHeight;
@TableField("IFBOX_WIDTH")
private String ifboxWidth;
@TableField("OLD_X")
private String oldX;
@TableField("OLD_Y")
private String oldY;
@TableField("OLD_ZBX")
private String oldZbx;
@TableField("X")
private Double x;
@TableField("Y")
private Double y;
}
package com.founder.eszy.service;
import com.founder.commonutils.esEntity.TbZyCamera;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* <p>
* 服务类
* </p>
*
* @author chent
* @since 2021-04-09
*/
public interface TbZyCameraService extends IService<TbZyCamera> {
}
package com.founder.eszy.service.impl;
import com.founder.commonutils.esEntity.TbZyCamera;
import com.founder.eszy.mapper.TbZyCameraMapper;
import com.founder.eszy.service.TbZyCameraService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
/**
* <p>
* 服务实现类
* </p>
*
* @author chent
* @since 2021-04-09
*/
@Service
public class TbZyCameraServiceImpl extends ServiceImpl<TbZyCameraMapper, TbZyCamera> implements TbZyCameraService {
}
......@@ -12,6 +12,7 @@
<modules>
<module>imageapi</module>
<module>carapi</module>
<module>peopleapi</module>
</modules>
<artifactId>serviceapi</artifactId>
<dependencies>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment