using ProductionSystem_Log; using ProductionSystem_Model; using ProductionSystem_Model.DbModel; using ProductionSystem_Model.DbModel.Para; using ProductionSystem_Model.ViewModel.Response.Para; using SqlSugar; using System; using System.Collections.Generic; namespace ProductionSystem_Service { public class ExvService : DbContext { public void Add(Exv ex) { db.Insertable(ex).ExecuteCommand(); } } public class UxService : DbContext { public void Add(Ux entity) { db.Insertable(entity).ExecuteCommand(); } } public class UYService : DbContext { public void Add(Uy entity) { db.Insertable(entity).ExecuteCommand(); } } public class StoneService : DbContext { public void Add(Stone entity) { db.Insertable(entity).ExecuteCommand(); } } }