⑴ 教學儀器中的目錄編號是什麼意思
就是編號嘛,方便查找!比如30506,是不是這樣!
⑵ 請問前輩們,現在的學校的固定資產編號是怎麼做的
我總結出固定資產的最佳編號,幾乎被所有的單位採用。
編碼原則:YYYYNNN,其中專:
YYYY為年度編號,如屬2011,2012等,它用來描述固定資產開始或購買年度。
NNN為流水編號,從001到999,因為任何一個大的企業,一年之中不可能購進1000台固定資產,所以最多3位足夠。
比如:2011012,描述為2011年購進的第12台固定資產。
有許多企業是用分類編碼後面加上一個流水號,這是不科學的,時間長了,隨著資產的增加,越編越亂。
⑶ 幼兒園木質教學設備(桌子椅子櫃子等),海關編碼是多少
94033000.90
其他辦公室用木傢具
申報要素
1:品名;
2:用途;
3:材質;
4:是否辦公室用;
5:品牌;
6:規格;
監管條件
A.入境貨物通關單
B.出境貨物通關單
⑷ 科學教學儀器的編號是全國統一的嗎
如果你說的是出廠編號,這個是由各個廠家自己按生產時間、地點編訂的;回每一個教育單答位購買後,自己學校為了方便資產管理,也會做一些編號,根據單位自己的情況編寫的,自然不會全國統一。
所以,科學教學儀器沒有全國統一的編號
⑸ 小學科學儀器教育部編號 小學熱學實驗盒是多少
規模小的抄學校:小學科學實驗員襲工作量=有實驗的教學班數規模大些的學校(平行班數超過4):小學科學實驗員工作量=有實驗的教學班數-(三年級平行班數÷2-1)-(四年級平行班數÷2-1)-(五年級平行班數÷2-2)-(六年級平行班數÷2-2)
⑹ 教學儀器的分類與編號及目錄
具體來您可以找廣州教學儀器捷星公源司
教學儀器的品種和數量很多,同品種的儀器也有不同的型號和規格。因此,在對其進行管理時,不能亂堆亂放,必須按科學的方法進行分類存放、分類管理。原則上要求按教育部頒發的中小學教學儀器配備目錄分類方法進行分類。中學儀器分理科(物理、化學、生物、地理、數學)、電教、音樂、美術、體育、通用(勞動)技術十個科別,其中理科儀器中的每科又分九大類:計量儀器、通用儀器、專用儀器、模型、標本、掛圖、玻璃儀器、葯品、其他實驗材料和工具(見下表)。小學分科學、數學、電教、音樂、美術、體育六科。同上述中學理科儀器一樣分為九大類。數學分計量儀器、通用儀器、專用儀器、模型、掛圖五類。
⑺ 學校設備科如何對所有設備編碼
你可以按照設備標准規范區片
⑻ 求c語言,教學設備管理系統代碼
#include<graphics.h>
#include<stdlib.h>
#include<stdio.h>
#include<conio.h>
#define NULL 0
#define LEN sizeof(struct equipment)
struct equipment
{long number;
char name[20];
char adr[20];
long date;
long taishu;
long price;
long amount;
char instruction[20];
struct equipment *next;
};
struct equipment *head,*equip,*p5,*p;
int n;
struct equipment *del1,*del2,*del3;
struct equipment*insert(struct equipment *head,struct equipment *p);
/*輸入函數*/
struct equipment* creat(void)
{struct equipment *p1,*p2;
n=0;
p1=p2=(struct equipment*)malloc(LEN);
printf("\n教學設備編號為0時,退出輸入!\n");
printf("輸入教學設備編號 :");
scanf("%ld",&p1->number);
printf("\n輸入設備名稱:");
scanf("%s",&p1->name);
printf("\n輸入生產廠家:");
scanf("%s",&p1->adr);
printf("\n輸入購置日期:");
scanf("%ld",&p1->date);
printf("\n輸入台數:");
scanf("%ld",&p1->taishu);
printf("\n輸入單價:");
scanf("%ld",&p1->price);
p1->amount=(p1->taishu)*(p1->price);
printf("\n輸入備注:");
scanf("%s",&p1->instruction);
head=NULL;
while(p1->number!=0)
{n=n+1;
if(n==1) head=p1;
else p2->next=p1;
p2=p1;
p1=(struct equipment*)malloc(LEN);
printf("\n輸入教學設備編號:");
scanf("%ld",&p1->number);
if(p1->number==0) break;
else
{printf("\n輸入設備名稱:");
scanf("%s",&p1->name);
printf("\n輸入生產廠家:");
scanf("%s",&p1->adr);
printf("\n輸入購置日期:");
scanf("%ld",&p1->date);
printf("\n輸入台數:");
scanf("%ld",&p1->taishu);
printf("\n輸入單價:");
scanf("%ld", &p1->price);
p1->amount=(p1->taishu)*(p1->price);
printf("\n輸入備注:");
scanf("%s",p1->instruction);}
}
p2->next=NULL;
return(head);
}
void print()
{clrscr();
gotoxy(33,0);
printf("\16[{-80|10@30,30=4(2)5****中南大學教學設備管理系統****}]");
gotoxy(3,5);
printf("設備編號 設備名稱 生產廠家 購置日期 台數 單價 金額 備注\n");}
void print1()
{int i,j;
for(i=0;i<=8;i++)
line(70*i+16,60,70*i+16,60+36*(n+1));
for(j=0;j<=n+1;j++)
line(16,60+36*j,70*8+16,60+36*j);}
/*顯示函數*/
void output(struct equipment* head)
{struct equipment*p;
p=head;
printf(" ");
if(head!=NULL)
do
{printf("\n %-9ld%-9s%-9s%-9ld%-9ld%-9ld%-9ld%-9s \n",p->number,p->name,p->adr,p->date,p->taishu,p->price,p->amount,p->instruction);
p=p->next;}while(p!=NULL);
printf(" ");
getch();}
/*修改函數*/
void change(struct equipment* head)
{struct equipment *p;
long num;
cleardevice();
for(;;)
{
printf("\n請輸入要修改的設備編號:");
scanf("%ld",&num);
p=head;
while(num!=p->number&&p->next!=NULL)
{p=p->next;}
if(num!=p->number)
{printf("\n對不起,無此記錄!按任意鍵返回!");
getch();
break;}
else
{printf("\n請輸入新的設備記錄:");
printf("\n輸入教學設備編號:");
scanf("%ld",&p->number);
printf("\n輸入教學設備名稱:");
scanf("%s",&p->name);
printf("\n輸入生產廠家:");
scanf("%s",&p->adr);
printf("\n輸入購置日期:");
scanf("%ld",&p->date);
printf("\n輸入台數:");
scanf("%ld",&p->taishu);
printf("\n輸入單價:");
scanf("%ld",&p->price);
p->amount=(p->taishu)*(p->price);
printf("\n輸入備注:");
scanf("%s",p->instruction);
printf("\n是否繼續退出,Y/N?");
if(getch()!='y') break;
}
}}
/*查找函數*/
void search(struct equipment* head)
{ struct equipment *p;
char choice;
long key;
do
{clrscr();
if(head==NULL)
printf("\n 無此記錄!");
printf("\n請輸入要查找的設備編號:");
scanf("%ld",&key);
p=head;
while(key!=p->number&&p->next!=NULL)
{p=p->next;}
if(key==p->number)
{print();
print1();
printf("\n %-9ld%-9s%-9s%-9ld%-9ld%-9ld%-9ld%-9s",p->number,p->name,p->adr,p->date,p->taishu,p->price,p->amount,p->instruction);
printf("\n");}
else
{printf("\n無此編號,請按任意鍵返回!");
getch();}
printf("\n您是否需要繼續查找?(y/n)\n");
choice=getch();
}while(choice=='y');
}
/*刪除函數*/
struct equipment *del(struct equipment *head)
{ struct equipment *p1,*p2;
long number;
int b=0;
do
{clrscr();
if(head==NULL)
{printf("\n無此記錄!\n");
return(head);}
else
{b=0;
if(del1==NULL) b=b+1;
if(del2==NULL) b=b+1;
if(del3==NULL) b=b+1;
if(b!=0)
printf("\n回收站還有%d的空間!",b);
else
printf("\n回收站已滿,無法再刪除!");
printf("\n請輸入要刪除的教學設備編號:");
scanf("%ld",&number);
p1=head;
while(number!=p1->number&&p1->next!=NULL)
{p2=p1;
p1=p1->next; }
if(number==p1->number)
{printf("\n進行邏輯刪除還是物理刪除,Y/N?");
if(getch()=='y')
{if(del1==NULL) del1=p1;
else if(del2==NULL) del2=p1;
else del3=p1;}
if(p1==head) head=p1->next;
else p2->next=p1->next;
printf("\n已刪除設備編號%ld記錄!",number);
b=b-1;}
else
{printf("\n無此設備記錄!");
getch();}
printf("\n是否繼續刪除/Y/N?");
}
}while(getch()=='y');
getch();
return(head);
}
/*恢復函數*/
struct equipment *recover(struct equipment* head)
{ struct equipment *p0,*p1,*p2;
long rec_num,a=0;
cleardevice();
gotoxy(1,3);
do{printf("\n可恢復的設備編號:");
if(del1!=NULL)
{a=a+1;printf("\n%ld",del1->number); }
if(del2!=NULL)
{a=a+1;printf("\n%ld",del2->number);}
if(del3!=NULL)
{a=a+1;printf("\n%ld",del3->number); }
if(a==0)
{printf("\n沒有可恢復的數據,請按任意鍵退出!");
getch();
return(head); }
printf("\n請輸入要恢復的教學設備編號:");
scanf("%ld",&rec_num);
if(rec_num==del1->number)
{p0=del1;
del1=NULL;}
else if(rec_num==del2->number)
{p0=del2;
del2=NULL;}
else if(rec_num==del3->number)
{p0=del3;
del3=NULL;}
else {printf("\n輸入錯誤,按任意鍵返回!");
getch();
return(head);}
p1=head;
if(head==NULL)
{head=p0;p0->next=NULL;}
else
{while((p0->number>p1->number)&&(p1->next!=NULL))
{p2=p1;
p1=p1->next;}
if(p0->number<p1->number)
{if(head==p1){head=p0;p0->next=p1;}
else p2->next=p0;
p0->next=p1;
} else
{p1->next=p0;
p0->next=NULL;}}
n=n+1;
output(head);
printf("\n恢復成功,請按任意鍵返回!");
printf("\n是否繼續進行恢復Y/N?");
}while(getch()=='y');
getch();
return(head);
}
/*添加函數*/
struct equipment *insert(struct equipment* head,struct equipment *p)
{
char choice;
p=(struct equipment*)malloc(LEN);
do
{
clrscr();
printf("\n請輸入新的教學設備資料:");
printf("\n輸入編號:");
scanf("%ld",&p->number);
printf("\n輸入名稱:");
scanf("%s",p->name);
printf("\n輸入生產廠家:");
scanf("%s",p->adr);
printf("\n輸入購置日期:");
scanf("%ld",&p->date);
printf("\n輸入台數:");
scanf("%ld",&p->taishu);
printf("\n 輸入單價:");
scanf("%ld",&p->price);
p->amount=(p->taishu)*(p->price);
printf("\n輸入備注:");
scanf("%s",p->instruction);
printf("\n");
if(n==0)
{ n=n+1;
head=p; }
else
{p->next=head;head=p;n++;}
printf("\n您是否要繼續添加?(y/n)\n");
}while(getch()=='y');
return(head);
}
/*統計函數*/
void count(struct equipment* head)
{ int sum1=0,sum2=0,sum3=0,sum4=0,sum5=0,sum6=0,sum7=0,sum8=0;
struct equipment* p;
p=head;
while(p)
{ for(p=head;p!=NULL;p=p->next)
{ sum1+=p->taishu;
sum2+=p->amount;
if(p->amount<200)
{ sum3+=p->taishu;sum4+=p->amount; }
else
if(p->price<800)
{ sum5+=p->taishu;sum6+=p->amount; }
else
{ sum7+=p->taishu;sum8+=p->amount; }
}
}
output(head);
printf("\n 合計 %d %d\n",sum1,sum2);
n=n+1;
print1();
n=n-1;
printf("\n");
printf("\n");
printf("\n 200元以下的設備總台數及總金額: %d %d",sum3,sum4);
printf("\n 200--800元之間的設備總台數及總金額: %d %d",sum5,sum6);
printf("\n 800元以上的設備總台數及總金額: %d %d",sum7,sum8);
getch();
}
/*保存函數*/
void save(struct equipment *head)
{ FILE *fp;
struct equipment *p;
char name[20];
p=head;
cleardevice();
printf("\n請輸入要保存的文件名:");
scanf("%s",name);
if((fp=fopen(name,"wb"))==NULL)
{printf("\n對不起!不能建立新文件!按任意鍵返回!");
getch();
return;}
while(p->number!=NULL)
{fwrite(p,LEN,1,fp);
p=p->next;}
printf("\n保存結束,請按任意鍵返回!");
fclose(fp);
getch();}
/*打開函數*/
struct equipment *dakai(void)
{ struct equipment *head, *p1,*p2 ;
char name[20];
FILE *fp=NULL;
cleardevice();
p1=p2=(struct equipment *)malloc(LEN);
printf("\n請輸入要打開的文件名:");
head=p1;
scanf("%s",name);
if((fp=fopen(name,"rb"))==NULL)
{printf("\n對不起,沒有該文件!請按任意鍵返回!");
getch();}
fread(p1,LEN,1,fp);
while(!feof(fp))
{p2->next=p1;
p2=p1;
p1=(struct equipment*)malloc(LEN);
fread(p1,LEN,1,fp);n++;};
p2->next=NULL;
fclose(fp);
output(head);
printf("\n文件已輸出,請按任意鍵返回!");
getch();
return(head);
}
⑼ 煙台南山學院各專業的代碼是多少
煙台南山學院各專業的代碼為:
01、 機械設計製造及其自動化;
02 、計算機科學內與技術容;
03 、材料成型及控制工程;
04 、自動化;
05 、電氣工程及其自動化;
06 、紡織工程;
07、 電子信息工程;
08 、信息管理與信息系統;
09 、市場營銷;
10、 工商管理 ;
11、 物流管理 ;
12、 旅遊管理。
煙台南山學院(Yantai Nanshan University)是教育部批準的普通本科高校,由南山集團投資興辦。學校地處海濱城市山東煙台龍口,建有南山和東海兩處校區。
據2017年4月學校官網顯示,學校佔地面積3028畝,建築面積77.23萬平方米。 設有工學院、商學院、人文學院、航空學院、音樂學院、健康學院6個二級學院,75個本專科專業,25個系(部、中心),涵蓋工學、文學、管理學、藝術學、經濟學、醫學等學科門類,在校生2萬餘人。
固定資產總值14.12億元,教學儀器設備總值2.22億元,館藏紙質圖書186.9萬冊,電子圖書8900GB,教學用計算機8686台。