using Business.Core.Attributes; using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations; namespace Business.Domain { /// /// 替代群组 /// [CollectionName("dopbase", "ic_substitute")] [Comment("替代群组")] public class ic_substitute : BaseEntity { /// /// 群组代码 /// [StringLength(20)] [Comment("群组代码")] public string substitute_code { get; set; } /// /// 替代类型 /// [Comment("替代类型")] public int? substitute_type { get; set; } /// /// 替代策略 /// [Comment("替代策略")] public int? substitute_strategy { get; set; } /// /// 替代方式 /// [Comment("替代方式")] public int? substitute_mode { get; set; } } }