刘磊
2025-11-11 6fed1f731b16c1820a43fc34130a70b21465e2bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using Masuit.Tools;
using Newtonsoft.Json.Serialization;
using System.ComponentModel.DataAnnotations;
using WIDESEA_Common.Boxing;
using WIDESEA_Model.Models;
 
namespace WIDESEA_StorageBasicService;
 
public class Dt_CarBodyService : ServiceBase<Dt_CarBody, IDt_CarBodyRepository>, IDt_CarBodyService
{
    public Dt_CarBodyService(IDt_CarBodyRepository BaseDal) : base(BaseDal)
    {
 
 
    }
}