12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Text;
- using System.Text.Json.Serialization;
- using System.Threading.Tasks;
- namespace wispro.sp.entity
- {
- public partial class Customer
- {
- public Customer()
- {
- PerformanceItems = new HashSet<PerformanceItem>();
- }
- public int Id { get; set; }
- public string Name { get; set; }
- public string ContactMan { get; set; }
- public string Address { get; set; }
- public string Phone { get; set; }
- public int? ResponseManId { get; set; }
- public virtual Staff ResponseMan { get; set; }
- public int? ARate { get; set; }
- public int? SRate { get; set; }
- [JsonIgnore]
- public virtual ICollection<PerformanceItem> PerformanceItems { get; set; } = new List<PerformanceItem>();
- }
- }
|