Files

28 lines
518 B
C#
Raw Permalink Normal View History

2025-11-20 14:07:55 +08:00
using System;
using System.Collections.Generic;
namespace WebAPIServer.Models;
/// <summary>
/// 客户列表
/// </summary>
public partial class TblUtsManageCompany
{
/// <summary>
/// ID
/// </summary>
public int Id { get; set; }
/// <summary>
/// 客户名称
/// </summary>
public string CustomerName { get; set; } = null!;
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; }
}