16 lines
306 B
C#
16 lines
306 B
C#
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; }
|
|
}
|