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