fa -- 固定资产
(创建时间:2009年06月11日 22:20:00)
darknight : 

 

 
  1.   
  2. CREATE TABLE [fa] (   
  3.  [ccode] text(20) not null CONSTRAINT [PK_faid] PRIMARY KEY--固定资产代码,唯一,主键   
  4.  [nodeid] text(200) not null--节点编号   
  5.  [cname] text(200) not null--名称   
  6.  [cunit] text(200) null,   --单位   
  7.  [cmodel] text(200) null--型号   
  8.  [cspec] text(200) null--规格   
  9.  [ccolor] text(200) null--颜色   
  10.  [cfrom] text(200) null--产地   
  11.  [cpack] text(200) null--包装   
  12.  [cstructure] text(200) null--材料结构   
  13.  [cproducer] text(200) null--生产厂商   
  14.  [cuser] text(200) null--使用者   
  15.  [cplace] text(200) null--存放地点   
  16.  [cmanager] text(200) null--管理人员   
  17.  [remark] Memo null--备注   
  18.  [acid] text(200) null--所属科目   
  19.  [cdate] datetime null--购买日期   
  20.  [depm] text(50) null,  --折旧方法   
  21.  [depy] Long null--折旧年限   
  22.  [balance] Currency null,  --残值率   
  23.  [isdepthismonth] INTEGER default 0,  --是否当月折旧   
  24.  [ac_voucher] memo null,  --记帐凭证 科目-金额对应   
  25.  [YorM] INTEGER default 0,  --按年或月折旧   
  26.  [S1] text(20) null,    
  27.  [S2] text(100) null,   
  28.  [S3] text(200) null,   
  29.  [I1] INTEGER null,   
  30.  [I2] INTEGER null,   
  31.  [I3] INTEGER null  
  32. );  
说明:
1). [ccode]固定资产的编码,如:“FA0001”。
2). [depm] 折旧方法有如下几种:
       a. 平均年限
       b. 年数总和
       c. 双倍余额递减
       d. 等值摊销(适合长期待摊费用管理)
3). [nodeid]   我们以一个表来保存“树”的全部结构,这个字段表示了当前记录所在的树的节点位置,这个字段的值必须是唯一,节点的父子之间关系用小数点分割。
4). [ac_voucher] 记录科目与金额的对应。
文档中心