using System; using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; using Volo.Abp.Domain.Entities; namespace Shentun.WebPeis.Models; /// /// 团检分组包含组合项目 /// public partial class CustomerOrgGroupDetail : AuditedEntity, IHasConcurrencyStamp { /// /// 分组编号 /// public Guid CustomerOrgGroupId { get; set; } /// /// 组合项目编号 /// public Guid AsbitemId { get; set; } /// /// 价格 /// public decimal Price { get; set; } /// /// 数量 /// 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]; } }