From 11430ae628f098654579811131abc522d679e870 Mon Sep 17 00:00:00 2001 From: czt <czt18638530771@163.com> Date: 星期一, 22 九月 2025 17:04:42 +0800 Subject: [PATCH] 上海对农接口调整-增加自动上传 --- src/main/java/com/fzzy/async/fzzy61/entity/Fz61SecCamera.java | 140 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 140 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/fzzy/async/fzzy61/entity/Fz61SecCamera.java b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61SecCamera.java new file mode 100644 index 0000000..3afacc4 --- /dev/null +++ b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61SecCamera.java @@ -0,0 +1,140 @@ +package com.fzzy.async.fzzy61.entity; + +import com.bstek.dorado.annotation.PropertyDef; +import lombok.Data; + +import javax.persistence.*; +import java.io.Serializable; +import java.util.Date; + +/** + * @Author: YYC + * @Description: + * @DateTime: 2025-9-16 16:25 + **/ +@Data +@Entity +@Table(name = "D_SEC_CAMERA") +public class Fz61SecCamera implements Serializable { + + public static String SORT_PROP = "orderNum"; + + @Id + @Column(name = "ID_", length = 40) + @PropertyDef(label = "ID") + private String id; + + @Column(name = "COMPANY_ID_", length = 10) + @PropertyDef(label = "缁勭粐缂栫爜") + private String companyId; + + @Column(name = "DEPT_ID_", length = 40) + @PropertyDef(label = "鎵�灞炲垎搴�") + private String deptId; + + + @Column(name = "NAME_", length = 50) + @PropertyDef(label = "鍚嶇О") + private String name; + + + @Column(name = "TYPE_", length = 10) + @PropertyDef(label = "璁惧绫诲瀷") + private String type; + + + @Column(name = "BRAND_", length = 50) + @PropertyDef(label = "璁惧鍝佺墝") + private String brand; + + @Column(name = "SN_", length = 50) + @PropertyDef(label = "搴忓垪鍙�") + private String sn; + + @Column(name = "PLAY_TYPE_", length = 40) + @PropertyDef(label = "鎾斁鏂瑰紡") + private String playType; + + @Column(name = "LOGIN_ID_", length = 20) + @PropertyDef(label = "甯愬彿") + private String loginId; + + @Column(name = "PWD_", length = 20) + @PropertyDef(label = "瀵嗙爜") + private String pwd; + + @Column(name = "IP_", length = 20) + @PropertyDef(label = "IP鍦板潃") + private String ip; + + @Column(name = "CONTROL_PORT_") + @PropertyDef(label = "鎺у埗绔彛") + private Integer controlPort; + + @Column(name = "WEB_PORT_") + @PropertyDef(label = "WEB绔彛") + private Integer webPort; + + @Column(name = "CHAN_NUM_") + @PropertyDef(label = "閫氶亾鍙�") + private Integer chanNum = 1; + + @PropertyDef(label = "鍐呯綉鐩存挱鍦板潃") + @Column(name = "URL_IN_", length = 254) + private String urlIn; + + @PropertyDef(label = "澶栫綉鐩存挱鍦板潃") + @Column(name = "URL_OUT_", length = 254) + private String urlOut; + + @Column(name = "MEDIA_ADDR_", length = 100) + @PropertyDef(label = "RTSP鍦板潃") + private String mediaAddr; + + @Column(name = "SNAP_TYPE_", length = 25) + @PropertyDef(label = "鎶撴媿鏂瑰紡") + private String snapType; + + @Column(name = "spjklx", length = 1) + @PropertyDef(label = "瑙嗛鐩戞帶绫诲瀷") + private String spjklx; + + @Column(name = "spdwlx", length = 2) + @PropertyDef(label = "瑙嗛鐐逛綅绫诲瀷") + private String spdwlx; + + @PropertyDef(label = "椤甸潰涓殑鍧愭爣") + @Column(name = "POS_X_") + private Double posX; + + @PropertyDef(label = "椤甸潰涓殑鍧愭爣") + @Column(name = "POS_Y_") + private Double posY; + + @PropertyDef(label = "澶у睆鏄剧ず鏍囪") + @Column(name = "SCREEN_SHOW_", length = 1) + private String screenShow; + + @PropertyDef(label = "鎵嬫満鏄惁鏄剧ず") + @Column(name = "PHONE_SHOW_TAG_", length = 1) + private String phoneShowTag ; + + @Column(name = "ORDER_NUM_") + @PropertyDef(label = "鏄剧ず椤哄簭") + private Integer orderNum = 1; + + @PropertyDef(label = "鏄惁浣跨敤") + @Column(name = "VLD_", length = 1) + private String vld; + + @Column(name = "REMARK_", length = 300) + @PropertyDef(label = "澶囨敞") + private String remark; + + @Column(name = "UPDATE_TIME_", length = 1) + @PropertyDef(label = "鏇存柊鏃堕棿") + private Date updateTime; + + + +} -- Gitblit v1.9.3