|
@@ -194,6 +194,14 @@ public class TbVmsCtlrDto implements Serializable {
|
|
|
@JsonProperty("strm_sesn_nm")
|
|
|
private String strmSesnNm;
|
|
|
|
|
|
+ @ApiModelProperty("스트리밍 HTTP 주소") // Y VARCHAR(200)
|
|
|
+ @JsonProperty("strm_http_addr")
|
|
|
+ private String strmHttpAddr;
|
|
|
+
|
|
|
+ @ApiModelProperty("스트리밍 RTSP 주소") // Y VARCHAR(200)
|
|
|
+ @JsonProperty("strm_rtsp_addr")
|
|
|
+ private String strmRtspAddr;
|
|
|
+
|
|
|
// Code Description Field
|
|
|
@ApiModelProperty("VMS 용도 유형 코드 설명")
|
|
|
@JsonProperty("vms_usag_type_desc") // VMS_USAG_TYPE_CD
|
|
@@ -455,8 +463,20 @@ public class TbVmsCtlrDto implements Serializable {
|
|
|
//@Size(min=1, max=200)
|
|
|
private String strmSesnNm;
|
|
|
|
|
|
+ @ApiModelProperty("스트리밍 HTTP 주소, Nullable = Y, VARCHAR(200)") // Y VARCHAR(200)
|
|
|
+ @JsonProperty("strm_http_addr")
|
|
|
+ //@Size(min=1, max=200)
|
|
|
+ @Size(max=200)
|
|
|
+ private String strmHttpAddr;
|
|
|
+
|
|
|
+ @ApiModelProperty("스트리밍 RTSP 주소, Nullable = Y, VARCHAR(200)") // Y VARCHAR(200)
|
|
|
+ @JsonProperty("strm_rtsp_addr")
|
|
|
+ //@Size(min=1, max=200)
|
|
|
+ @Size(max=200)
|
|
|
+ private String strmRtspAddr;
|
|
|
+
|
|
|
@Builder
|
|
|
- public TbVmsCtlrUpdReq(Long vms_ctlr_nmbr, String vms_id, String vms_ctlr_id, String vms_nm, String vms_ctlr_ip, String vms_usag_type_cd, String vms_frm_type_cd, String vms_type_cd, String vms_modl_type_cd, String vms_cmnc_port, String oper_mode, Integer vms_cmnc_err_bass_val, Integer vms_nght_brgh_step, Integer vms_week_brgh_step, Integer vms_phse_chng_cycl, Integer vms_modl_err_rate, Integer cmncfail_slot_nmbr, Integer pwer_fail_slot_nmbr, String del_yn, String cmtrinfr_cnct_yn, String wthrinfr_cnct_yn, String envrinfr_cnct_yn, Integer vms_max_phse_num, String frst_regr_nmbr, String frst_rgst_dt, String last_crpr_nmbr, String last_crct_dt, String panl_on_time, String panl_off_time, String panl_pwer_mode, String brgh_mode, String web_cmra_ip, Double x_crdn, Double y_crdn, String istl_lctn_nm, String trfc_strg_use_yn, Long vms_loc_ifsc_id, Integer fan_mtns_tmpr, Integer hetr_mtns_tmpr, String web_cmra_port, String web_cmra_id, String web_cmra_pwd, String strm_sesn_nm) {
|
|
|
+ public TbVmsCtlrUpdReq(Long vms_ctlr_nmbr, String vms_id, String vms_ctlr_id, String vms_nm, String vms_ctlr_ip, String vms_usag_type_cd, String vms_frm_type_cd, String vms_type_cd, String vms_modl_type_cd, String vms_cmnc_port, String oper_mode, Integer vms_cmnc_err_bass_val, Integer vms_nght_brgh_step, Integer vms_week_brgh_step, Integer vms_phse_chng_cycl, Integer vms_modl_err_rate, Integer cmncfail_slot_nmbr, Integer pwer_fail_slot_nmbr, String del_yn, String cmtrinfr_cnct_yn, String wthrinfr_cnct_yn, String envrinfr_cnct_yn, Integer vms_max_phse_num, String frst_regr_nmbr, String frst_rgst_dt, String last_crpr_nmbr, String last_crct_dt, String panl_on_time, String panl_off_time, String panl_pwer_mode, String brgh_mode, String web_cmra_ip, Double x_crdn, Double y_crdn, String istl_lctn_nm, String trfc_strg_use_yn, Long vms_loc_ifsc_id, Integer fan_mtns_tmpr, Integer hetr_mtns_tmpr, String web_cmra_port, String web_cmra_id, String web_cmra_pwd, String strm_sesn_nm, String strm_http_addr, String strm_rtsp_addr) {
|
|
|
this.vmsCtlrNmbr = vms_ctlr_nmbr;
|
|
|
this.vmsId = vms_id;
|
|
|
this.vmsCtlrId = vms_ctlr_id;
|
|
@@ -500,6 +520,8 @@ public class TbVmsCtlrDto implements Serializable {
|
|
|
this.webCmraId = web_cmra_id;
|
|
|
this.webCmraPwd = web_cmra_pwd;
|
|
|
this.strmSesnNm = strm_sesn_nm;
|
|
|
+ this.strmHttpAddr = strm_http_addr;
|
|
|
+ this.strmRtspAddr = strm_rtsp_addr;
|
|
|
}
|
|
|
|
|
|
public TbVmsCtlr toEntity() {
|
|
@@ -547,6 +569,8 @@ public class TbVmsCtlrDto implements Serializable {
|
|
|
.webCmraId(this.webCmraId)
|
|
|
.webCmraPwd(this.webCmraPwd)
|
|
|
.strmSesnNm(this.strmSesnNm)
|
|
|
+ .strmHttpAddr(this.strmHttpAddr)
|
|
|
+ .strmRtspAddr(this.strmRtspAddr)
|
|
|
.build();
|
|
|
}
|
|
|
|