ComplianceServer/oldcode/Model/MAP/QH_Audituserid.cs

18 lines
443 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace WX.CRM.Model.MAP
{
public class QH_Audituserid
{
[DisplayName("客户ID")]
[Required(ErrorMessage = "客户ID不能为空")]
public string resid { get; set; }
[DisplayName("交易账号")]
[Required(ErrorMessage = "交易账号不能为空!")]
public string useraccount { get; set; }
}
}