|
@@ -44,7 +44,8 @@ public class VmsFormObject implements Serializable {
|
|
|
private int fontBold; // 폰트굵기
|
|
|
private int textAlign; // 문자열정열방식
|
|
|
private String textData; // 문자열데이터
|
|
|
- private String memSymbLibNmbr; // 이미지아이디
|
|
|
+ private String memSymbLibNmbr; // 이미지아이디(메모리)
|
|
|
+ private String symbLibNmbr; // 이미지아이디
|
|
|
|
|
|
private Long ifscId;
|
|
|
private int ifscTrafGradCd;
|
|
@@ -68,6 +69,7 @@ public class VmsFormObject implements Serializable {
|
|
|
this.bitmapId = 0;
|
|
|
this.videoFileName = "";
|
|
|
this.strmAddr = "";
|
|
|
+ this.symbLibNmbr = "0";
|
|
|
}
|
|
|
|
|
|
public void setFormObjectInfo(String fontName, TbVmsFormObjectDto obj) {
|
|
@@ -92,6 +94,7 @@ public class VmsFormObject implements Serializable {
|
|
|
this.objectSize = obj.getVmsDsplSize(); // NUMBER(7) Y 0 VMS 표출 크기(문자:문자길이,이미지:이미지전체크기)
|
|
|
this.textData = obj.getVmsDsplTxt();
|
|
|
this.memSymbLibNmbr = obj.getSymbLibNmbr() + "0";
|
|
|
+ this.symbLibNmbr = obj.getSymbLibNmbr() + "";
|
|
|
|
|
|
this.bitmapType = obj.getBitmapType();
|
|
|
this.bitmapId = obj.getBitmapId();
|