DeviceManager/DeviceRepair.Models/SFC/TsSFCAuths.cs

26 lines
506 B
C#
Raw Permalink Normal View History

2024-07-27 01:44:19 +00:00
using System;
namespace DeviceRepair.Models.SFC
{
public class TsSFCAuths
{
public int Id { get; set; }
public string AuthCode { get; set; }
public string AuthName { get; set; }
public string FatherAuthCode { get; set; }
public string CreateBy { get; set; }
public DateTime CreateOn { get; set; }
public string ModifyBy { get; set; }
public DateTime ModifyOn { get; set; }
public string Note { get; set; }
}
}