Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. group: project
  2.  
  3. Employee = {
  4. empNo:string, fName:string, iName:string, address:string, DOB:string, sex:string, position:string, deptNo:string
  5.  
  6. 'S005','Blake','Richardson','London','25 Dec 1983','M','Director','N01'
  7. 'S007','Taylor','Swift','Aberdeen','12 Oct 1981','F','Manager','N02'
  8. 'S003','Lisa','Blackpink','Glasgow','3 Jan 1985','F','Secretary','N03'
  9. 'S004','Maudy','Ayunda','Kudus','5 Jun 1992','F','Developer','N04'
  10. 'S002','Iqbaal','Ramadhan','London','22 Oct 1991','M','Assistant Manager','N05'
  11. }
  12.  
  13.  
  14. Department = {
  15. deptNo:string, deptName:string, mgrEmpNo:string
  16.  
  17. 'N03','Financial','LG01'
  18. 'N04','SCCS','LD02'
  19. 'N01','HR','LS03'
  20. 'N02','IT','LK05'
  21. 'N05','Marketing','LX04'
  22. }
  23.  
  24.  
  25. Project = {
  26. projNo:string, projName:string, deptNo:string
  27.  
  28. 'FR03','Joker','N03'
  29. 'FG04','KungFu Panda','N04'
  30. 'FL01','Nussa','N05'
  31. 'FO02','Antribos','N01'
  32. 'FP05','eFishery','N02'
  33. }
  34.  
  35.  
  36. WorksOn = {
  37. empNo:string, projNo:string, dateWorked:string, hoursWorked:string
  38.  
  39. 'S003','FO02','3 May','7 hours'
  40. 'S004','FG04','6 Jul','5 hours'
  41. 'S007','FL01','19 Mar','6 hours'
  42. 'S002','FP05','30 Mar','8 hours'
  43. 'S005','FR03','01 Jun','6 hours'
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement