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.
|
|
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using Volo.Abp.Domain.Entities;using Volo.Abp.Domain.Entities.Auditing;
namespace Shentun.WebPeis.Models{ /// <summary>
/// 组合项目推荐级别表
/// </summary>
public class AsbitemRecommendLevel : AuditedEntity, IHasConcurrencyStamp, IDisplayOrder { /// <summary>
/// 主键
/// </summary>
public short AsbitemRecommendLevelId { get; set; }
/// <summary>
/// 名称
/// </summary>
public string AsbitemRecommendLevelName { get; set; } = null!;
public string SimpleCode { get; set; } = null!;
public int DisplayOrder { get; set; }
public string? ConcurrencyStamp { get; set; }
public override object?[] GetKeys() { return [AsbitemRecommendLevelId]; } }}
|