123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using OASystem.Domain.Entities.System;
- using System.Text.RegularExpressions;
- namespace OASystem.Domain.ViewModels
- {
-
-
-
- public class CompanyView
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string CompanyCode { get; set; }
-
-
-
- public string CompanyName { get; set; }
-
-
-
- public string Address { get; set; }
-
-
-
- public int ContactUserId { get; set; }
-
-
-
- public string ContactUserName { get; set; }
-
-
-
- public string Tel { get; set; }
-
-
-
-
- public int ParentCompanyId { get; set; }
-
-
-
- public string ParentCompanyName { get; set; }
-
-
-
- public string Remark { get; set; }
- }
-
-
-
- public class CompanyNameView
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string? CompanyName { get; set; }
- }
- }
|