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.
 
 
 

45 lines
997 B

using System;
using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
using Volo.Abp.Domain.Entities;
namespace Shentun.WebPeis.Models;
/// <summary>
/// 团检分组包含组合项目
/// </summary>
public partial class CustomerOrgGroupDetail : AuditedEntity, IHasConcurrencyStamp
{
/// <summary>
/// 分组编号
/// </summary>
public Guid CustomerOrgGroupId { get; set; }
/// <summary>
/// 组合项目编号
/// </summary>
public Guid AsbitemId { get; set; }
/// <summary>
/// 价格
/// </summary>
public decimal Price { get; set; }
/// <summary>
/// 数量
/// </summary>
public short Amount { get; set; }
public string? ConcurrencyStamp { get; set; }
public virtual Asbitem Asbitem { get; set; } = null!;
public virtual CustomerOrgGroup CustomerOrgGroup { get; set; } = null!;
public override object?[] GetKeys()
{
return [CustomerOrgGroupId, AsbitemId];
}
}