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.2 KiB
C#
53 lines
1.2 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("g_wo_picklist_detail")]
|
|
[Serializable]
|
|
public class GWoPicklistDetail : BaseEntity
|
|
{
|
|
[Column("workorder")]
|
|
[DisplayName(" ")]
|
|
public string Workorder { get; set; }
|
|
|
|
[Column("carton_no")]
|
|
[DisplayName(" ")]
|
|
public string CartonNo { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName(" ")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("src_locate_id")]
|
|
[DisplayName(" ")]
|
|
public int SrcLocateId { get; set; }
|
|
|
|
[Column("dest_locate_id")]
|
|
[DisplayName(" ")]
|
|
public int DestLocateId { get; set; }
|
|
|
|
[Column("src_wh_code")]
|
|
[DisplayName(" ")]
|
|
public string SrcWhCode { get; set; }
|
|
|
|
[Column("dest_wh_code")]
|
|
[DisplayName(" ")]
|
|
public string DestWhCode { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName(" ")]
|
|
public decimal Qty { get; set; }
|
|
|
|
[Column("ruid")]
|
|
[DisplayName(" ")]
|
|
public int Ruid { get; set; }
|
|
|
|
|
|
}
|
|
}
|