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