刘磊
2026-01-22 1924bdeca6414b6fec314c37260b44f20865d593
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_CarBodyInfoService : ServiceBase<Dt_CarBodyInfo, IDt_CarBodyInfoRepository>, IDt_CarBodyInfoService
{
    public Dt_CarBodyInfoService(IDt_CarBodyInfoRepository BaseDal) : base(BaseDal)
    {
 
 
    }
}