@@ -40,16 +40,18 @@ $(document).ready(function() {
|
||||
'<%= localeMessage.getString("user.roleName") %>',
|
||||
'<%= localeMessage.getString("user.status") %>',
|
||||
'<%= localeMessage.getString("user.createOn") %>',
|
||||
'<%= localeMessage.getString("user.lastLoginYms") %>',
|
||||
'<%= localeMessage.getString("user.depart") %>',
|
||||
'<%= localeMessage.getString("user.teamName") %>',
|
||||
'<%= localeMessage.getString("user.position") %>'
|
||||
],
|
||||
colModel:[
|
||||
{ name : 'USERID' , align:'center' ,sortable:false },
|
||||
{ name : 'USERNAME' , align:'center' },
|
||||
{ name : 'ROLEIDNFINAME' , align:'center' },
|
||||
{ name : 'STATUS' , align:'center', formatter: userStatusFormat },
|
||||
{ name : 'LASTAMNDYMS' , align:'center', formatter: timeStampFormat },
|
||||
{ name : 'USERID' , align:'center', width: 100, sortable:false },
|
||||
{ name : 'USERNAME' , align:'center', width: 100 },
|
||||
{ name : 'ROLEIDNFINAME' , align:'center', width: 300 },
|
||||
{ name : 'STATUS' , align:'center', width: 80, formatter: userStatusFormat },
|
||||
{ name : 'REGDYMS' , align:'center', width: 120, formatter: timeStampFormat },
|
||||
{ name : 'LASTLOGINYMS' , align:'center', width: 120, formatter: timeStampFormat },
|
||||
{ name : 'DVSNNAME' , align:'center', hidden: true },
|
||||
{ name : 'TEAMNAME' , align:'center', hidden: true },
|
||||
{ name : 'JOBTLNAME' , align:'center', hidden: true }
|
||||
|
||||
@@ -88,7 +88,8 @@ function detail(key){
|
||||
$(tag+"[name="+name+"]").val(data[name.toUpperCase()] ? data[name.toUpperCase()].trim():"");
|
||||
});
|
||||
|
||||
$("input[name=LASTAMNDYMS]").inputmask("9999-99-99 99:99:99",{'autoUnmask':true});
|
||||
$("input[name=REGDYMS]").inputmask("9999-99-99 99:99:99",{'autoUnmask':true});
|
||||
$("input[name=LASTLOGINYMS]").inputmask("9999-99-99 99:99:99",{'autoUnmask':true});
|
||||
/* $("input[name=SECONDMENTSTDT]").inputmask("9999-99-99",{'autoUnmask':true});
|
||||
$("input[name=SECONDMENTENDT]").inputmask("9999-99-99",{'autoUnmask':true}); */
|
||||
|
||||
@@ -334,7 +335,10 @@ $(document).ready(function() {
|
||||
<th><%= localeMessage.getString("user.fieldAgentName") %> </th><td><input type="text" name="spotprxyname" /></td>
|
||||
</tr> --%>
|
||||
<tr>
|
||||
<th><%= localeMessage.getString("user.createOn") %> </th><td><input type="text" name="LASTAMNDYMS" readonly/></td>
|
||||
<th><%= localeMessage.getString("user.createOn") %> </th><td><input type="text" name="REGDYMS" readonly/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><%= localeMessage.getString("user.lastLoginYms") %> </th><td><input type="text" name="LASTLOGINYMS" readonly/></td>
|
||||
</tr>
|
||||
<%-- <tr>
|
||||
<th><%= localeMessage.getString("user.secondmentbrncd") %> </th><td><input type="text" name="SECONDMENTBRNCD" readonly/></td>
|
||||
|
||||
@@ -24,6 +24,8 @@ public interface UserUIMapper extends GenericMapper<UserUI, UserInfo> {
|
||||
@Mapping(source = "secondmentstdt", target = "SECONDMENTSTDT")
|
||||
@Mapping(source = "secondmentendt", target = "SECONDMENTENDT")
|
||||
@Mapping(source = "allowip", target = "allowIp")
|
||||
@Mapping(source = "lastloginyms", target = "LASTLOGINYMS")
|
||||
@Mapping(source = "regdyms", target = "REGDYMS")
|
||||
UserUI toVo(UserInfo entity);
|
||||
|
||||
@Override
|
||||
|
||||
@@ -82,4 +82,14 @@ public class UserUI {
|
||||
|
||||
@JsonProperty("STATUS")
|
||||
private String status; // 사용자계정상태
|
||||
|
||||
@JsonProperty("LASTLOGINYMS")
|
||||
@JsonFormat(pattern = LocalDateTimeFormatters.FORMAT_YYYYMMDDHHMMSS_14)
|
||||
@DateTimeFormat(pattern = "yyyyMMddHHmmss")
|
||||
private LocalDateTime LASTLOGINYMS; // 최종로그인일시
|
||||
|
||||
@JsonProperty("REGDYMS")
|
||||
@JsonFormat(pattern = LocalDateTimeFormatters.FORMAT_YYYYMMDDHHMMSS_14)
|
||||
@DateTimeFormat(pattern = "yyyyMMddHHmmss")
|
||||
private LocalDateTime REGDYMS; // 등록일시
|
||||
}
|
||||
|
||||
@@ -2398,6 +2398,7 @@ user.checkRequired2 = Please enter the user name.
|
||||
user.checkRequired3 = Please enter the password.
|
||||
user.createBy = Create By
|
||||
user.createOn = Creation Time
|
||||
user.lastLoginYms = Last Login Time
|
||||
user.depCode = Department Code
|
||||
user.depart = Department
|
||||
user.eaiGrupCd = EAI group code
|
||||
|
||||
@@ -2560,6 +2560,7 @@ user.checkRequired2 = Please enter the user name.
|
||||
user.checkRequired3 = Please enter the password.
|
||||
user.createBy = Create By
|
||||
user.createOn = Creation Time
|
||||
user.lastLoginYms = Last Login Time
|
||||
user.depCode = Department Code
|
||||
user.depart = Department
|
||||
user.eaiGrupCd = EAI group code
|
||||
|
||||
@@ -2661,6 +2661,7 @@ user.checkRequired4 = \uC811\uC18D \uD5C8\uC6A9 IP\uB97C \uD655\uC778\uD558\u
|
||||
user.checkRequired5 = \uC0AC\uC6A9\uC790 \uACC4\uC815 \uC0C1\uD0DC\uB97C \uD655\uC778\uD558\uC5EC \uC8FC\uC2ED\uC2DC\uC624..
|
||||
user.createBy = \uB4F1\uB85D\uC778
|
||||
user.createOn = \uB4F1\uB85D\uC77C\uC2DC
|
||||
user.lastLoginYms = \uCD5C\uC885\uB85C\uADF8\uC778\uC77C\uC2DC
|
||||
user.depCode = \uBD80\uC810\uCF54\uB4DC
|
||||
user.depart = \uBD80\uC11C\uBA85
|
||||
user.eaiGrupCd = EAI\uADF8\uB8F9\uD68C\uC0AC\uCF54\uB4DC
|
||||
|
||||
Reference in New Issue
Block a user