using System; using System.Collections.Generic; using System.Linq; using System.Text; using FireBirdUtil.DataTypes; using FireBirdUtil.SqlHelpers; namespace WeighBusiness.BO.CreateTables { public class CreateProduceBatch_RoadMap_Ref : CreateBaseTable { public CreateProduceBatch_RoadMap_Ref(string tableName) : base(tableName) { } public override void AddFields(CreateTableHelper cth) { cth.AddField(new FieldInfo() { FieldName = "ProduceBatch_ID", FieldType = FBType.Integer, IsNotNull = true }); cth.AddField(new FieldInfo() { FieldName = "RoadMap_ID", FieldType = FBType.Integer, IsNotNull = true }); base.AddFields(cth); } } }