using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity.RequestMod
{
public class ReqestUserPwd
{
///
/// 旧密码
///
public string oldPwd
{
get; set;
}
///
/// 新密码
///
public string newPwd
{
get; set;
}
}
}