Ditem.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. type SchDitem struct {
  2. Id string `xorm:"not null pk default '' comment('상품링크코드:유일코드') VARCHAR(1)"`
  3. CreatedOn int64 `xorm:"default 0 comment('작성일자') BIGINT(20)"`
  4. UpdatedOn int64 `xorm:"not null default 0 comment('수정일자') BIGINT(11)"`
  5. BrandUid string `xorm:"not null default 'no-brand' comment('브랜드유일키') VARCHAR(64)"`
  6. IgroupCode string `xorm:"not null comment('상품카테고리 코드') VARCHAR(21)"`
  7. IgroupName string `xorm:"not null comment('상품카테고리명') VARCHAR(21)"`
  8. ItemCode string `xorm:"not null comment('상품코드') VARCHAR(21)"`
  9. ItemName string `xorm:"not null comment('상품명') VARCHAR(82)"`
  10. CountUnit string `xorm:"not null comment('수량단위(EA등)') VARCHAR(5)"`
  11. CargoType string `xorm:"not null comment('화물구분:택배,소포,등기') VARCHAR(5)"`
  12. ShipType string `xorm:"not null comment('배송구분:일반배송,오늘출발 등') VARCHAR(5)"`
  13. LocationType string `xorm:"not null default '0' comment('배송유형:0국내, 1해외') CHAR(1)"`
  14. ExposeEdate string `xorm:"not null default '0' comment('노출시작일') CHAR(1)"`
  15. ExposeSdate string `xorm:"not null default '0' comment('노출 종료일') CHAR(1)"`
  16. ShipFeeType string `xorm:"not null comment('배송비구분:무료,고정비,조건별,수량별,구간별') VARCHAR(5)"`
  17. IsShipGrouping string `xorm:"not null comment('묶음배송 가능') VARCHAR(5)"`
  18. ShipPayment string `xorm:"not null comment('배송비지불방식:0선불,1착불,2선택') VARCHAR(5)"`
  19. ShipFee string `xorm:"not null comment('무료,고정배송비경우 금액') DECIMAL(18,4)"`
  20. FeeCondAmt string `xorm:"not null comment('무료조건금액') DECIMAL(18,4)"`
  21. ListPrc string `xorm:"not null default 0.0000 comment('소매정가') DECIMAL(18,4)"`
  22. SalesPrc string `xorm:"default 0.0000 comment('판매가') DECIMAL(18,4)"`
  23. CurrStkQty string `xorm:"not null default 999999.0000 comment('현재고') DECIMAL(18,4)"`
  24. CsTelno string `xorm:"not null comment('서비스센터 전화번화') VARCHAR(5)"`
  25. CsDesc string `xorm:"not null comment('서비스센터 설명문') VARCHAR(5)"`
  26. Maker string `xorm:"not null comment('제조사') VARCHAR(5)"`
  27. ShortDesc string `xorm:"not null default '' comment('짧은설명-html') TEXT"`
  28. ItemDesc string `xorm:"comment('품목설명-html') TEXT"`
  29. Model string `xorm:"not null comment('모델명') VARCHAR(5)"`
  30. MixQty string `xorm:"default 0.0000 comment('구매최소량') DECIMAL(18,4)"`
  31. MaxQty string `xorm:"default 0.0000 comment('구매최대량') DECIMAL(18,4)"`
  32. SeoKeys string `xorm:"default 0.0000 comment('구매최대량') DECIMAL(18,4)"`
  33. TaxType string `xorm:"not null comment('과세,영세,면세') VARCHAR(5)"`
  34. OriginCode string `xorm:"not null comment('원산지국가코드') VARCHAR(5)"`
  35. Status string `xorm:"not null default '0' comment('판매상태: 0판매중, 1품절, 2:단종, 3:중지') CHAR(1)"`
  36. Importer string `xorm:"not null comment('수입사') VARCHAR(5)"`
  37. IsAdultOnly string `xorm:"not null comment('성인용품') VARCHAR(5)"`
  38. Opt1Caption string `xorm:"not null comment('옵션명1') VARCHAR(5)"`
  39. Opt1Values string `xorm:"not null comment('옵션값1') VARCHAR(5)"`
  40. Opt2Caption string `xorm:"not null comment('옵션명2') VARCHAR(5)"`
  41. Opt2Values string `xorm:"not null comment('옵션값2') VARCHAR(5)"`
  42. Opt3Caption string `xorm:"not null comment('옵션명3') VARCHAR(5)"`
  43. Opt3Values string `xorm:"not null comment('옵션값3') VARCHAR(5)"`
  44. OptPrices string `xorm:"not null comment('옵션별 추가금액') VARCHAR(5)"`
  45. OptStkQtys string `xorm:"not null comment('옵션별 재고수량') VARCHAR(5)"`
  46. OptStatuses string `xorm:"not null comment('옵션별 상태') VARCHAR(5)"`
  47. OptUsables string `xorm:"not null comment('옵션별 사용여부') VARCHAR(5)"`
  48. }