100 lines
2.2 KiB
C#
100 lines
2.2 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace DataCommon
|
|||
|
|
{
|
|||
|
|
public class GoodsInfo
|
|||
|
|
{
|
|||
|
|
public string GOODS_ID { get; set; }
|
|||
|
|
|
|||
|
|
public string GOODS_NAME { get; set; }
|
|||
|
|
|
|||
|
|
public string GOODS_SHORT_NAME { get; set; }
|
|||
|
|
|
|||
|
|
public string PY_NAME { get; set; }
|
|||
|
|
|
|||
|
|
public string GOODS_TYPE_ID { get; set; }
|
|||
|
|
|
|||
|
|
public string SPECIFICATION { get; set; }
|
|||
|
|
|
|||
|
|
public string MODEL { get; set; }
|
|||
|
|
|
|||
|
|
public string PRICE { get; set; }
|
|||
|
|
|
|||
|
|
public string BARCODE { get; set; }
|
|||
|
|
|
|||
|
|
public string GLENGTH { get; set; }
|
|||
|
|
|
|||
|
|
public string GWIDTH { get; set; }
|
|||
|
|
|
|||
|
|
public string GHEIGHT { get; set; }
|
|||
|
|
|
|||
|
|
public string GVOLUME { get; set; }
|
|||
|
|
|
|||
|
|
public string SCALE_UNIT { get; set; }
|
|||
|
|
|
|||
|
|
public string UNIT { get; set; }
|
|||
|
|
|
|||
|
|
public string WARN_UP { get; set; }
|
|||
|
|
|
|||
|
|
public string WARN_DOWN { get; set; }
|
|||
|
|
|
|||
|
|
public string PRODUCE_AREA { get; set; }
|
|||
|
|
|
|||
|
|
public string GROSS_WEIGHT { get; set; }
|
|||
|
|
|
|||
|
|
public string NET_WEIGHT { get; set; }
|
|||
|
|
|
|||
|
|
public string PROVIDER_ID { get; set; }
|
|||
|
|
|
|||
|
|
public string HSNUMBER { get; set; }
|
|||
|
|
|
|||
|
|
public string ABC { get; set; }
|
|||
|
|
|
|||
|
|
public string HAZARDOUS { get; set; }
|
|||
|
|
|
|||
|
|
public string STORED { get; set; }
|
|||
|
|
|
|||
|
|
public string PERIOD { get; set; }
|
|||
|
|
|
|||
|
|
public string PERIODUNIT { get; set; }
|
|||
|
|
|
|||
|
|
public string ADDTAX { get; set; }
|
|||
|
|
|
|||
|
|
public string SEASON { get; set; }
|
|||
|
|
|
|||
|
|
public string TARIFFRATE { get; set; }
|
|||
|
|
|
|||
|
|
public string REMARK { get; set; }
|
|||
|
|
|
|||
|
|
public string STATUS { get; set; }
|
|||
|
|
|
|||
|
|
public string VERSION { get; set; }
|
|||
|
|
|
|||
|
|
public Byte[] IMG { get; set; }
|
|||
|
|
|
|||
|
|
public string CREATE_MAN { get; set; }
|
|||
|
|
|
|||
|
|
public string CREATE_DATE { get; set; }
|
|||
|
|
|
|||
|
|
public string UPDATE_MAN { get; set; }
|
|||
|
|
|
|||
|
|
public string UPDATE_DATE { get; set; }
|
|||
|
|
|
|||
|
|
public string SC_FLAG { get; set; }
|
|||
|
|
|
|||
|
|
public string COST_PRICE { get; set; }
|
|||
|
|
|
|||
|
|
public string IS_OPEN { get; set; }
|
|||
|
|
|
|||
|
|
public string STORAGE_AREA_ID { get; set; }
|
|||
|
|
|
|||
|
|
public string ZH_FlAG { get; set; }
|
|||
|
|
|
|||
|
|
public string SEMISTS { get; set; }
|
|||
|
|
public string IMGStr { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|