mh_frame_sps/APT.Domain/LDX_Test_Phone.cs
2026-04-07 13:47:52 +08:00

23 lines
470 B
C#

using APT.Infrastructure.Core;
using System;
using System.Collections.Generic;
using System.Text;
namespace APT.Domain
{
public class APT_Test_Phone : MesEntityBase
{
public string Brand { get; set; }
public string Model { get; set; }
public decimal Price { get; set; }
public Guid TestUser_ID { get; set; }
public int? Number { get; set; }
public virtual APT_Test_User Nav_TestUser { get; set; }
}
}