35 lines
680 B
C#
35 lines
680 B
C#
using System;
|
|
namespace Zxd.Entity.Zxd
|
|
{
|
|
[Table("t_standard_product")]
|
|
public class StandardProduct
|
|
{
|
|
public StandardProduct()
|
|
{
|
|
}
|
|
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
[Column("standard_type")]
|
|
public StandardType StandardType { get; set; }
|
|
|
|
public int Way { get; set; }
|
|
|
|
[Column("product_code")]
|
|
public string? ProductCode { get; set; }
|
|
|
|
[Column("product_package_code")]
|
|
public string? ProductPackageCode { get; set; }
|
|
|
|
[Column("create_time")]
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
[Column("update_time")]
|
|
public DateTime? UpdateTime { get; set; }
|
|
|
|
public virtual List<FinishedProduct>? FinishedProducts { get; set; }
|
|
}
|
|
}
|
|
|