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.
53 lines
1.3 KiB
C#
53 lines
1.3 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Principal;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.Core.Model.ViewModels
|
|
{
|
|
/// <summary>
|
|
/// 料仓信息
|
|
/// </summary>
|
|
public partial class BinView
|
|
{
|
|
/// <summary>
|
|
/// 料仓序列
|
|
/// </summary>
|
|
public int Bin_Serial { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:料仓名称
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Bin_Name { get; set; }
|
|
/// <summary>
|
|
/// Desc:料仓二维码
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Bin_Code { get; set; }
|
|
/// <summary>
|
|
/// Desc:物料ID
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Material_ID { get; set; }
|
|
/// <summary>
|
|
/// Desc:物料名称
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Material_Name { get; set; }
|
|
/// <summary>
|
|
/// Desc:物料code(默认条码)
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Material_code { get; set; }
|
|
}
|
|
}
|