임시 커밋

This commit is contained in:
2023-06-20 09:38:33 +09:00
parent 79fd348f1b
commit b4a9fb3120
3 changed files with 4 additions and 4 deletions

View File

@@ -54,10 +54,7 @@ export default {
}, },
methods : { methods : {
search: function(isKeep) { search: function(isKeep) {
}, },
setUserInfo (props){ setUserInfo (props){
this.$emit('event-data', props) this.$emit('event-data', props)
this.UserListPopClose(); this.UserListPopClose();

View File

@@ -27,4 +27,6 @@ public class ChrgDetail implements Serializable{
private String bizrNo; private String bizrNo;
@ApiModelProperty(example = "충전seq", name = "충전seq", dataType = "String") @ApiModelProperty(example = "충전seq", name = "충전seq", dataType = "String")
private String chrgSeq; private String chrgSeq;
@ApiModelProperty(example = "가입구분", name = "가입구분", dataType = "String")
private String joinDiv;
} }

View File

@@ -19,5 +19,6 @@ public class UserinInfo implements Serializable{
private String userSttusCd; private String userSttusCd;
@ApiModelProperty(example = "이용자 유형 코드", name = "이용자 유형 코드", dataType = "String") @ApiModelProperty(example = "이용자 유형 코드", name = "이용자 유형 코드", dataType = "String")
private String userTpCd; private String userTpCd;
@ApiModelProperty(example = "가입구분", name = "가입구분", dataType = "String")
private String joinDiv;
} }