|
@@ -1,5 +1,6 @@
|
|
|
using Business.Core.Attributes;
|
|
using Business.Core.Attributes;
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
+using System;
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
@@ -173,5 +174,60 @@ namespace Business.Domain
|
|
|
[Comment("供应类别")]
|
|
[Comment("供应类别")]
|
|
|
public string supplier_type { get; set; }
|
|
public string supplier_type { get; set; }
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 关税
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [Precision(18, 5)]
|
|
|
|
|
+ [Comment("关税")]
|
|
|
|
|
+ public decimal? tariff { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 运费
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [Precision(18, 5)]
|
|
|
|
|
+ [Comment("运费")]
|
|
|
|
|
+ public decimal? freight { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 生效日期
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [Comment("生效日期")]
|
|
|
|
|
+ public DateTime? effective_date { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 失效日期
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [Comment("失效日期")]
|
|
|
|
|
+ public DateTime? expiring_date { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 配额比例
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [Precision(18, 5)]
|
|
|
|
|
+ [Comment("配额比例")]
|
|
|
|
|
+ public decimal? quota_rate { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 采购提前期
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [Precision(18, 5)]
|
|
|
|
|
+ [Comment("采购提前期")]
|
|
|
|
|
+ public decimal? lead_time { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 价格条款
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [StringLength(64)]
|
|
|
|
|
+ [Comment("价格条款")]
|
|
|
|
|
+ public string? price_terms { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 每箱包装数量
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [Precision(18, 5)]
|
|
|
|
|
+ [Comment("每箱包装数量")]
|
|
|
|
|
+ public decimal? packaging_qty { get; set; }
|
|
|
|
|
+
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|