35 lines
866 B
C#
35 lines
866 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Internal.Domain.Dto
|
|
{
|
|
public class CustomerMoblieDto
|
|
{
|
|
[Column("CUSTOMERID")]
|
|
public string? CustomerId { get; set; }
|
|
|
|
[Column("RESID")]
|
|
public string? Resid { get; set; }
|
|
[Column("CNAME")]
|
|
public string? Cname { get; set; }
|
|
[Column("MOBILE")]
|
|
public string? Mobile { get; set; }
|
|
|
|
[Column("companyName")]
|
|
public string? CompanyName { get; set; }
|
|
|
|
[Column("companyCode")]
|
|
public string? CompanyCode { get; set; }
|
|
|
|
[Column("ISPRIMARYNUM")]
|
|
public bool IsPrimarynum { get; set; }
|
|
|
|
[Column("LASTNUM3")]
|
|
public string? Lastnum3 { get; set; }
|
|
}
|
|
}
|