namespace DS.WMS.Core.System.Dtos;
///
///
///
public class GoodsAuditInput
{
public string GID { get; set; }
///
/// 商品编码
///
public string GOODCODE { get; set; } = "";
///
/// 商品名称
///
public string GOODNAME { get; set; }
///
/// 商品描述
///
public string DESCRIP { get; set; }
///
/// 规格型号
///
public string GOODSMODEL { get; set; }
///
/// 货物大类
///
public string GoodsTypeGID { get; set; }
///
/// 计费大类ID
///
public Guid? GoodsFeeTypeGID{ get; set; }
///
/// 计费大类
///
public string GOODSFEETYPE { get; set; } = "";
///
/// 申报计量单位
///
public string RULEUNIT { get; set; }
///
/// 法定第一计量单位
///
public string RULEUNIT2 { get; set; }
///
/// 法定第二计量单位
///
public string RULEUNIT1 { get; set; }
public string CompanyId { get; set; }= "";
///
/// 上传文件列表
///
public fileinfo[]? File { get; set; }
}