기본 콘텐츠로 건너뛰기

gsjava 연구소 설립

기업부설연구소, 연구부서 둘다 세액 감면을 받을수 있지만 기업부설연구소가 여러가지 혜택이 많다.
기업부설연구소가 있으면 연구원은 인적 세액 25%를 감면 받을 수 있다.
대표이사, 주식 10%로 이상을 소유한 연구원은 세액 감면을 받을 수 없다.
창업하는 3년 미만 회사는 대표이사도 연구원이 가능 하다
3년 이상이 되면 대표이사는 연구원 등제를 할 수 없다.
3년 미만 회사는 연구원 2명으로 설립이 가능하다
연구원은 겸직을 할 수 없고 4대 보험이 꼭 가입되어 있어야 한다.

좀더 자세한 사항은 아래 블러그 참조 하세요



출처: https://developmentlee.tistory.com/ [developmentlee]

댓글

이 블로그의 인기 게시물

dmesg 메시지 실시간으로 보기

참조사이트 http://imitator.kr/Linux/556 # tail -f /var/log/messages # tail -f |dmesg //기본 2초 단위로 갱신 된다. # watch "dmesg | tail -f" //1초 단위로 갱신하면서 보여준다. # watch -n 1 "dmesg | tail -f" // 보여주는 줄을 20으로 늘린다. (기본 10줄) # watch -n 1 "dmesg | tail -f -n 20"

java 특정 디렉토리에 있는 파일 목록을 읽어내기, 정렬해서 가져오기

폴더 리스트 가져오기 String path="C:\"; File dirFile=new File(path); File []fileList=dirFile.listFiles(); for(File tempFile : fileList) {   if(tempFile.isFile()) {     String tempPath=tempFile.getParent();     String tempFileName=tempFile.getName();     System.out.println("Path="+tempPath);     System.out.println("FileName="+tempFileName);     /*** Do something withd tempPath and temp FileName ^^; ***/   } } 정렬해서 가져오기 import java.io.FileFilter; import java.io.IOException; import java.util.Arrays; import java.util.Date; import org.apache.commons.io.comparator.LastModifiedFileComparator; import org.apache.commons.io.filefilter.FileFileFilter; public class LastModifiedFileComparatorTest { public static void main(String[] args) throws IOException { File directory = new File("."); // get just files, not directories File[] files = directory.listFiles((FileFilter) FileFileFilter.FILE); System.out.println("Defaul...