You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
569 B
C#
22 lines
569 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.BaseInfo.Dtos
|
|
{
|
|
public class GoodsImportModel
|
|
{
|
|
public string 商品类别 { get; set; }
|
|
public string 商品名称 { get; set; }
|
|
public string 规格型号 { get; set; }
|
|
public string 申报计量单位 { get; set; }
|
|
public string 计费大类 { get; set; }
|
|
|
|
public string 第一计量单位 { get; set; }
|
|
|
|
public string 第二计量单位 { get; set; }
|
|
}
|
|
}
|