using Business.Core.Attributes;
using Microsoft.EntityFrameworkCore;
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Business.StructuredDB.MES
{
///
/// 人员列表
///
[Comment("人员列表")]
[Keyless]
public class rf_userDto
{
///
/// 密码
///
[Comment("密码")]
public string TimePassword { get; set; }
}
}