12345678910111213141516171819202122 |
- using NXWMS.DataAccess.Entity;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Client.Model.AppModels.Result.Base
- {
- /// <summary>
- /// 客户档案
- /// </summary>
- public class CustomerResult : BAS_CUSTOMER
- {
- public string CreateName { get; set; }
- public string UpdateName { get; set; }
- public string UsedFlagName { get; set; }
- }
- }
|