BaseFeeConfig.cs 971 B

1234567891011121314151617181920212223242526272829
  1. using MathNet.Numerics.LinearAlgebra.Factorization;
  2. using System;
  3. using System.Collections.Generic;
  4. namespace JiaZhiQuan.Common.Models.VO.UE {
  5. public class BaseFeeConfig {
  6. public int id { get; set; }
  7. public int upDays { get; set; }
  8. public int stageFee { get; set; }
  9. public int startSalePrice { get; set; }
  10. public int postPrice { get; set; }
  11. public int state { get; set; }
  12. public int configType { get; set; }
  13. public string addressJson { get; set; }
  14. public AddressInfo address { get; set; }
  15. public int operatorId { get; set; }
  16. public SimpleSysUserInfo operatorUser { get; set; }
  17. public DateTime? createAt { get; set; }
  18. public DateTime? updateAt { get; set; }
  19. }
  20. public class AddressInfo {
  21. public string name;
  22. public string phone;
  23. public string area;
  24. public string detailAddress;
  25. public string shopUserId;
  26. }
  27. }