PosItemGroupSystem.cs 516 B

12345678910111213141516171819202122
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. namespace Dfs.WayneChina.PosModelMini
  6. {
  7. public class PosItemGroupSystem
  8. {
  9. public Guid Id { get; set; }
  10. [Required]
  11. [MaxLength(80)]
  12. public string Name { get; set; }
  13. public DateTime CreatedDateTime { get; set; }
  14. public string Description { get; set; }
  15. public virtual List<BusinessUnit> AppliedInBusinessUnits { get; set; }
  16. }
  17. }