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.
61 lines
1.4 KiB
C#
61 lines
1.4 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("g_order_print")]
|
|
[Serializable]
|
|
public class GOrderPrint : BaseEntity
|
|
{
|
|
[Column("ruid")]
|
|
[DisplayName(" ")]
|
|
public int Ruid { get; set; }
|
|
|
|
[Column("runsheet_no")]
|
|
[DisplayName(" ")]
|
|
public string RunsheetNo { get; set; }
|
|
|
|
[Column("runsheet_type")]
|
|
[DisplayName(" ")]
|
|
public string RunsheetType { get; set; }
|
|
|
|
[Column("printed")]
|
|
[DisplayName(" ")]
|
|
public string Printed { get; set; }
|
|
|
|
[Column("reprint_count")]
|
|
[DisplayName(" ")]
|
|
public int? ReprintCount { get; set; }
|
|
|
|
[Column("runsheet_content")]
|
|
[DisplayName(" ")]
|
|
public string RunsheetContent { get; set; }
|
|
|
|
[Column("create_time")]
|
|
[DisplayName(" ")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
[Column("update_time")]
|
|
[DisplayName(" ")]
|
|
public DateTime? UpdateTime { get; set; }
|
|
|
|
[Column("custpd_line")]
|
|
[DisplayName(" ")]
|
|
public string CustpdLine { get; set; }
|
|
|
|
[Column("startseq")]
|
|
[DisplayName(" ")]
|
|
public string Startseq { get; set; }
|
|
|
|
[Column("endseq")]
|
|
[DisplayName(" ")]
|
|
public string Endseq { get; set; }
|
|
|
|
|
|
}
|
|
}
|