cg_relevancy -- 完工货品相关表
(创建时间:2009年06月11日 23:48:00)
cc : 
 
 
  1. CREATE TABLE[cg_relevancy](       
  2.   [ID] integer identity(1,1) not null CONSTRAINT [PK_cg_relevancy] PRIMARY KEY,--代码,唯一,主键       
  3.   [period] varchar(8) not null,  -- 区间       
  4.   [cgid] int NULL,  -- 完工货品代码       
  5.   [iid] int NULL  --invoice表代码       
  6. );     

说明:
  1.此表用于记录完工货品表[completegoods]与发票表[invoice]关系。
文档中心