|
|
@ -1,5 +1,6 @@
|
|
|
|
package cokr.xit.foundation.component;
|
|
|
|
package cokr.xit.foundation.component;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import cokr.xit.foundation.ApplicationException;
|
|
|
|
import cokr.xit.foundation.UserInfo;
|
|
|
|
import cokr.xit.foundation.UserInfo;
|
|
|
|
import cokr.xit.foundation.data.DataObject;
|
|
|
|
import cokr.xit.foundation.data.DataObject;
|
|
|
|
|
|
|
|
|
|
|
@ -98,4 +99,10 @@ public interface AbstractMapper extends
|
|
|
|
return new DataObject()
|
|
|
|
return new DataObject()
|
|
|
|
.set("currentUser", currentUser());
|
|
|
|
.set("currentUser", currentUser());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**{@link ApplicationException#get(Throwable)} 참고
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
default ApplicationException applicationException(Throwable t) {
|
|
|
|
|
|
|
|
return ApplicationException.get(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|