13 lines
278 B
C#
13 lines
278 B
C#
namespace JNPF.VisualData.Entitys.Dto.ScreenDataSource;
|
|
|
|
/// <summary>
|
|
/// 大屏数据源修改输入.
|
|
/// </summary>
|
|
public class ScreenDataSourceUpInput : ScreenDataSourceCrInput
|
|
{
|
|
/// <summary>
|
|
/// 主键.
|
|
/// </summary>
|
|
public string id { get; set; }
|
|
}
|