You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
938 B
C#
50 lines
938 B
C#
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();
|
|
}
|
|
|
|
}
|
|
|
|
}
|