Files
Web_AUTS_New_Prod/WebAPIServer/Models/TblUtsManageOrderstatus.cs

16 lines
306 B
C#
Raw Permalink Normal View History

2025-11-20 14:07:55 +08:00
using System;
using System.Collections.Generic;
namespace WebAPIServer.Models;
public partial class TblUtsManageOrderstatus
{
public int Id { get; set; }
public string StatusName { get; set; } = null!;
public string? Remark { get; set; }
public DateTime? UpdateTime { get; set; }
}