10 lines
220 B
C#
10 lines
220 B
C#
namespace YY.Admin.Core.Entity;
|
|
|
|
public class MesXslUnit
|
|
{
|
|
public string? Id { get; set; }
|
|
public string? UnitCode { get; set; }
|
|
public string? UnitName { get; set; }
|
|
public int? TenantId { get; set; }
|
|
}
|