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