| 12345678910111213141516171819202122232425262728293031323334 |
- namespace Admin.NET.Plugin.AiDOP.Entity.S0.Sales;
- /// <summary>
- /// 源平台 ic_substitute:替代方案(只读查询模型)。
- /// 注意:这是对既有业务表的映射,不代表新增业务实体表。
- /// </summary>
- [SugarTable("ic_substitute", "替代方案(源平台表映射)")]
- public class IcSubstitute
- {
- [SugarColumn(ColumnName = "Id", ColumnDescription = "主键", IsPrimaryKey = true, ColumnDataType = "bigint")]
- public long Id { get; set; }
- [SugarColumn(ColumnName = "substitute_code", ColumnDescription = "替代方案编码", IsNullable = true, Length = 100)]
- public string? SubstituteCode { get; set; }
- [SugarColumn(ColumnName = "substitute_strategy", ColumnDescription = "替代策略", IsNullable = true, Length = 100)]
- public string? SubstituteStrategy { get; set; }
- [SugarColumn(ColumnName = "substitute_mode", ColumnDescription = "替代方式", IsNullable = true, Length = 100)]
- public string? SubstituteMode { get; set; }
- [SugarColumn(ColumnName = "create_time", ColumnDescription = "创建时间", IsNullable = true)]
- public DateTime? CreateTime { get; set; }
- [SugarColumn(ColumnName = "company_id", ColumnDescription = "公司ID", IsNullable = true, ColumnDataType = "bigint")]
- public long? CompanyId { get; set; }
- [SugarColumn(ColumnName = "factory_id", ColumnDescription = "工厂ID", IsNullable = true, ColumnDataType = "bigint")]
- public long? FactoryId { get; set; }
- [SugarColumn(ColumnName = "IsDeleted", ColumnDescription = "逻辑删除标记", IsNullable = true, ColumnDataType = "int")]
- public int? IsDeleted { get; set; }
- }
|