步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
507 B

using FreeSql.DataAnnotations;
namespace BBWY.Server.Model.Db
{
[Table(Name = "purchaseorderdetail", DisableSyncStructure = true)]
public partial class PurchaseOrderDetail {
[Column(IsPrimary = true)]
public long Id { get; set; }
[Column(StringLength = 50)]
public string OrderId { get; set; }
[Column(StringLength = 50)]
public string SkuId { get; set; }
public long? PurchaseOrderPKId { get; set; }
[Column(StringLength = 50)]
public string PurchaseSkuId { get; set; }
}
}