初始化
This commit is contained in:
27
WebAPIServer/Models/TblUtsManageCompany.cs
Normal file
27
WebAPIServer/Models/TblUtsManageCompany.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user