using System; using System.Collections.Generic; namespace WebAPIServer.Models; /// /// 客户列表 /// public partial class TblUtsManageCompany { /// /// ID /// public int Id { get; set; } /// /// 客户名称 /// public string CustomerName { get; set; } = null!; /// /// 创建时间 /// public DateTime CreateTime { get; set; } public DateTime UpdateTime { get; set; } }