using Cassandra.Mapping; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using JiShe.CollectBus.IotSystems.MessageIssueds; using static Cassandra.QueryTrace; namespace JiShe.CollectBus.Cassandra.Mappers { public class CollectBusMapping: Mappings { public CollectBusMapping() { For() .Column(e => e.Type, cm => cm.WithName("type").WithDbType()); } } }