using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.Repository.Domain
{
[SugarTable("lasa_spacedevice")]
public class LasaSpaceDevice
{
///
/// Desc:项目id
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string WorkSpaceId { get; set; }
///
/// Desc:设备Id
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string DeviceId { get; set; }
}
}