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.

37 lines
831 B
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("sys_order")]
[Serializable]
public class SysOrder : BaseEntity
{
[Column("sys_vendor_code")]
[DisplayName(" ")]
public string SysVendorCode { get; set; }
[Column("sys_part_no")]
[DisplayName(" ")]
public string SysPartNo { get; set; }
[Column("sys_snp_qty")]
[DisplayName(" ")]
public int SysSnpQty { get; set; }
[Column("sys_plan_qty")]
[DisplayName(" ")]
public int SysPlanQty { get; set; }
[Column("sys_rec_qty")]
[DisplayName(" ")]
public int SysRecQty { get; set; }
}
}