85 lines
2.2 KiB
Plaintext
85 lines
2.2 KiB
Plaintext
|
ds
|
||
|
조직도 쪽지 보내기
|
||
|
send-dept -> deptSeq 프로퍼티 추가
|
||
|
부서 오른쪽 마우스 이벤트 추가
|
||
|
부서 코드 추출
|
||
|
API 호출
|
||
|
|
||
|
crm-pro
|
||
|
주소록
|
||
|
index 컴포넌트
|
||
|
expansion 컴포넌트
|
||
|
|
||
|
|
||
|
private String deviceType;
|
||
|
|
||
|
private String tokenKey;
|
||
|
|
||
|
private Long userSeq;
|
||
|
|
||
|
private Long msgSeq;
|
||
|
|
||
|
private String userName;
|
||
|
|
||
|
private String category; // G : 일반, N : 공지
|
||
|
|
||
|
private String title;
|
||
|
|
||
|
private String titleYn;
|
||
|
|
||
|
private String listOrder;
|
||
|
|
||
|
private String type;
|
||
|
|
||
|
private String msgType; // U : 임직원, G : 공용그룹 쪽지, D : 부서 쪽지
|
||
|
|
||
|
private String receiveName;
|
||
|
|
||
|
// @JsonSerialize(using=DateTimeSerializer.class)
|
||
|
// @JsonFormat(shape=JsonFormat.Shape.STRING, pattern="yyyy-MM-dd HH:mm:ss", timezone="Asia/Seoul")
|
||
|
// @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
||
|
private Date reservationTime;
|
||
|
|
||
|
private List< TextContextVo> textContentVo;
|
||
|
|
||
|
private List< RecvUserVo> recvUserListVo;
|
||
|
|
||
|
public void setRecvUserListVo(List< RecvUserVo> recvUserListVo) {
|
||
|
this.recvUserListVo = recvUserListVo;
|
||
|
}
|
||
|
|
||
|
private List< MultipartFile> files;
|
||
|
|
||
|
private String smsYn;
|
||
|
|
||
|
private Long deptSeq;
|
||
|
|
||
|
projects\ucap-webmessenger-ui-organization\src\public-api.ts ->
|
||
|
projects\ucap-webmessenger-ui-organization\src\lib\components\tree.component.ts ->
|
||
|
projects\ucap-webmessenger-app\src\app\layouts\messenger\dialogs\message\message-write.dialog.component.ts ->
|
||
|
projects\ucap-webmessenger-app\src\app\layouts\messenger\dialogs\chat\create-chat.dialog.component.ts ->
|
||
|
projects\ucap-webmessenger-app\src\app\store\index.ts ->
|
||
|
projects\ucap-webmessenger-app\src\app\store\messenger\index.ts ->
|
||
|
projects\ucap-webmessenger-app\src\app\store\messenger\query\index.ts ->
|
||
|
projects\ucap-webmessenger-app\src\app\store\messenger\query\effects.ts ->
|
||
|
projects\ucap-webmessenger-ui-organization\src\public-api.ts
|
||
|
|
||
|
http://10.81.13.221:6990/users/sign_in
|
||
|
|
||
|
console.log(node);
|
||
|
this.dialogService.open<
|
||
|
MessageWriteDialogComponent,
|
||
|
MessageWriteDialogData,
|
||
|
MessageWriteDialogResult
|
||
|
>(MessageWriteDialogComponent, {
|
||
|
maxWidth: '90vw',
|
||
|
maxHeight: '94vh',
|
||
|
disableClose: true,
|
||
|
hasBackdrop: false,
|
||
|
data: {
|
||
|
loginRes: this.loginRes,
|
||
|
environmentsInfo: this.environmentsInfo,
|
||
|
receiverList: null,
|
||
|
deptInfo: node.deptInfo
|
||
|
}
|
||
|
});
|