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.
60 lines
1.4 KiB
C#
60 lines
1.4 KiB
C#
using Estsh.Core.Base;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Estsh.Core.Model.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("g_po_cancel_master")]
|
|
[Serializable]
|
|
public class GPoCancelMaster : BaseEntity
|
|
{
|
|
[Column("order_no")]
|
|
[DisplayName(" ")]
|
|
public string OrderNo { get; set; }
|
|
|
|
[Column("rt_no")]
|
|
[DisplayName(" ")]
|
|
public string RtNo { get; set; }
|
|
|
|
[Column("po_no")]
|
|
[DisplayName(" ")]
|
|
public string PoNo { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName(" ")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName(" ")]
|
|
public int? Qty { get; set; }
|
|
|
|
[Column("type")]
|
|
[DisplayName(" ")]
|
|
public string Type { get; set; }
|
|
|
|
[Column("sync_no")]
|
|
[DisplayName(" ")]
|
|
public string SyncNo { get; set; }
|
|
|
|
[Column("enabled")]
|
|
[DisplayName(" ")]
|
|
public string Enabled { get; set; }
|
|
|
|
[Column("guid")]
|
|
[DisplayName(" ")]
|
|
public string Guid { get; set; }
|
|
|
|
[Column("ruid")]
|
|
[DisplayName(" ")]
|
|
public int Ruid { get; set; }
|
|
}
|
|
}
|