merge from 2023-03-14
This commit is contained in:
41
extend/Tnb.Extend.Entitys/Dto/Customer/CustomerListOutput.cs
Normal file
41
extend/Tnb.Extend.Entitys/Dto/Customer/CustomerListOutput.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using JNPF.DependencyInjection;
|
||||
using SqlSugar;
|
||||
|
||||
namespace JNPF.Extend.Entitys.Dto.Customer;
|
||||
|
||||
/// <summary>
|
||||
/// 客户信息.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class CustomerListOutput
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键.
|
||||
/// </summary>
|
||||
public string id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 客户编号.
|
||||
/// </summary>
|
||||
public string code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 客户名称.
|
||||
/// </summary>
|
||||
public string customerName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 地址.
|
||||
/// </summary>
|
||||
public string address { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 名称.
|
||||
/// </summary>
|
||||
public string name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 联系方式.
|
||||
/// </summary>
|
||||
public string contactTel { get; set; }
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
using JNPF.DependencyInjection;
|
||||
using JNPF.Extend.Entitys.Dto.ProductEntry;
|
||||
|
||||
namespace JNPF.Extend.Entitys.Dto.Product;
|
||||
|
||||
@@ -106,5 +107,5 @@ public class ProductCrInput
|
||||
/// <summary>
|
||||
/// 子表数据.
|
||||
/// </summary>
|
||||
public List<ProductEntryEntity> productEntryList { get; set; }
|
||||
public List<ProductEntryCrInput> productEntryList { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.Extend.Entitys.Dto.ProductEntry;
|
||||
|
||||
/// <summary>
|
||||
/// 新建产品明细.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class ProductEntryCrInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键.
|
||||
/// </summary>
|
||||
public string? id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 产品编号.
|
||||
/// </summary>
|
||||
public string productCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 产品名称.
|
||||
/// </summary>
|
||||
public string productName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 产品规格.
|
||||
/// </summary>
|
||||
public string productSpecification { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 数量.
|
||||
/// </summary>
|
||||
public int qty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订货类型.
|
||||
/// </summary>
|
||||
public string type { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 单价.
|
||||
/// </summary>
|
||||
public decimal money { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 折后单价.
|
||||
/// </summary>
|
||||
public decimal price { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 金额.
|
||||
/// </summary>
|
||||
public decimal amount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注.
|
||||
/// </summary>
|
||||
public string description { get; set; }
|
||||
}
|
||||
@@ -8,6 +8,11 @@ namespace JNPF.Extend.Entitys.Dto.ProductEntry;
|
||||
[SuppressSniffer]
|
||||
public class ProductEntryInfoOutput
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键.
|
||||
/// </summary>
|
||||
public string id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 产品编号.
|
||||
/// </summary>
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.Extend.Entitys.Dto.ProductGoods;
|
||||
|
||||
/// <summary>
|
||||
/// 产品列表.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class ProductGoodsListOutput
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键.
|
||||
/// </summary>
|
||||
public string id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 分类主键.
|
||||
/// </summary>
|
||||
public string classifyId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单编号.
|
||||
/// </summary>
|
||||
public string code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单名称.
|
||||
/// </summary>
|
||||
public string fullName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单名称.
|
||||
/// </summary>
|
||||
public int qty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订货类型.
|
||||
/// </summary>
|
||||
public string type { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 金额.
|
||||
/// </summary>
|
||||
public string amount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 单价.
|
||||
/// </summary>
|
||||
public string money { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
using JNPF.Common.Filter;
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.Extend.Entitys.Dto.ProductGoods;
|
||||
|
||||
/// <summary>
|
||||
/// 产品列表.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class ProductGoodsListQueryInput : PageInputBase
|
||||
{
|
||||
/// <summary>
|
||||
/// 订单编号.
|
||||
/// </summary>
|
||||
public string code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 产品名称.
|
||||
/// </summary>
|
||||
public string fullName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 分类ID.
|
||||
/// </summary>
|
||||
public string classifyId { get; set; }
|
||||
}
|
||||
@@ -6,7 +6,8 @@ namespace JNPF.Extend.Entitys;
|
||||
/// <summary>
|
||||
/// 大数据测试
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com)
|
||||
/// 作 者:JNPF开发平台组
|
||||
/// 日 期:2021-06-01.
|
||||
/// </summary>
|
||||
[SugarTable("EXT_BIGDATA")]
|
||||
|
||||
59
extend/Tnb.Extend.Entitys/Entity/CustomerEntity.cs
Normal file
59
extend/Tnb.Extend.Entitys/Entity/CustomerEntity.cs
Normal file
@@ -0,0 +1,59 @@
|
||||
using JNPF.Common.Contracts;
|
||||
using SqlSugar;
|
||||
|
||||
namespace JNPF.Extend.Entitys.Entity;
|
||||
|
||||
/// <summary>
|
||||
/// 客户信息.
|
||||
/// </summary>
|
||||
[SugarTable("ext_customer", TableDescription = "客户信息")]
|
||||
public class CustomerEntity : CLEntityBase
|
||||
{
|
||||
/// <summary>
|
||||
/// 编码.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_Code")]
|
||||
public string Code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 客户名称.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_CustomerName")]
|
||||
public string Customername { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 地址.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_Address")]
|
||||
public string Address { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 名称.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_Name")]
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 联系方式.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_ContactTel")]
|
||||
public string ContactTel { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 删除标志.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_DeleteMark")]
|
||||
public float Deletemark { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 删除时间.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_DeleteTime")]
|
||||
public DateTime Deletetime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 删除用户.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_DeleteUserId")]
|
||||
public string Deleteuserid { get; set; }
|
||||
}
|
||||
@@ -6,7 +6,8 @@ namespace JNPF.Extend.Entitys;
|
||||
/// <summary>
|
||||
/// 知识文档
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com)
|
||||
/// 作 者:JNPF开发平台组
|
||||
/// 日 期:2021-06-01.
|
||||
/// </summary>
|
||||
[SugarTable("EXT_DOCUMENT")]
|
||||
|
||||
@@ -6,7 +6,8 @@ namespace JNPF.Extend.Entitys;
|
||||
/// <summary>
|
||||
/// 知识文档共享
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com)
|
||||
/// 作 者:JNPF开发平台组
|
||||
/// 日 期:2021-06-01 .
|
||||
/// </summary>
|
||||
[SugarTable("EXT_DOCUMENTSHARE")]
|
||||
|
||||
@@ -6,7 +6,8 @@ namespace JNPF.Extend.Entitys;
|
||||
/// <summary>
|
||||
/// 邮件配置
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com)
|
||||
/// 作 者:JNPF开发平台组
|
||||
/// 日 期:2021-06-01.
|
||||
/// </summary>
|
||||
[SugarTable("EXT_EMAILCONFIG")]
|
||||
|
||||
@@ -6,7 +6,8 @@ namespace JNPF.Extend.Entitys;
|
||||
/// <summary>
|
||||
/// 邮件接收
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com)
|
||||
/// 作 者:JNPF开发平台组
|
||||
/// 日 期:2021-06-01.
|
||||
/// </summary>
|
||||
[SugarTable("EXT_EMAILRECEIVE")]
|
||||
|
||||
@@ -6,7 +6,8 @@ namespace JNPF.Extend.Entitys;
|
||||
/// <summary>
|
||||
/// 邮件发送
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com)
|
||||
/// 作 者:JNPF开发平台组
|
||||
/// 日 期:2021-06-01 .
|
||||
/// </summary>
|
||||
[SugarTable("EXT_EMAILSEND")]
|
||||
|
||||
@@ -6,7 +6,8 @@ namespace JNPF.Extend.Entitys;
|
||||
/// <summary>
|
||||
/// 职员信息
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com)
|
||||
/// 作 者:JNPF开发平台组
|
||||
/// 日 期:2021-06-01 .
|
||||
/// </summary>
|
||||
[SugarTable("EXT_EMPLOYEE")]
|
||||
|
||||
@@ -6,7 +6,8 @@ namespace JNPF.Extend.Entitys;
|
||||
/// <summary>
|
||||
/// 订单信息
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com)
|
||||
/// 作 者:JNPF开发平台组
|
||||
/// 日 期:2021-06-01 .
|
||||
/// </summary>
|
||||
[SugarTable("EXT_ORDER")]
|
||||
|
||||
@@ -6,7 +6,8 @@ namespace JNPF.Extend.Entitys;
|
||||
/// <summary>
|
||||
/// 订单明细
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com)
|
||||
/// 作 者:JNPF开发平台组
|
||||
/// 日 期:2021-06-01 .
|
||||
/// </summary>
|
||||
[SugarTable("EXT_ORDERENTRY")]
|
||||
|
||||
@@ -6,7 +6,8 @@ namespace JNPF.Extend.Entitys;
|
||||
/// <summary>
|
||||
/// 订单收款
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com)
|
||||
/// 作 者:JNPF开发平台组
|
||||
/// 日 期:2021-06-01 .
|
||||
/// </summary>
|
||||
[SugarTable("EXT_ORDERRECEIVABLE")]
|
||||
|
||||
@@ -9,14 +9,8 @@ namespace JNPF.Extend.Entitys;
|
||||
/// </summary>
|
||||
[SugarTable("ext_productclassify")]
|
||||
[Tenant(ClaimConst.TENANTID)]
|
||||
public class ProductClassifyEntity : CLDEntityBase
|
||||
public class ProductClassifyEntity : CLEntityBase
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_Id", IsPrimaryKey = true)]
|
||||
public string Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 上级.
|
||||
/// </summary>
|
||||
@@ -28,4 +22,22 @@ public class ProductClassifyEntity : CLDEntityBase
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_FULLNAME")]
|
||||
public string FullName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置 删除标志.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_DeleteMark", ColumnDescription = "删除标志")]
|
||||
public int? DeleteMark { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置 删除时间.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_DeleteTime", ColumnDescription = "删除时间")]
|
||||
public DateTime? DeleteTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置 删除用户.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_DeleteUserId", ColumnDescription = "删除用户")]
|
||||
public string DeleteUserId { get; set; }
|
||||
}
|
||||
@@ -9,14 +9,8 @@ namespace JNPF.Extend.Entitys;
|
||||
/// </summary>
|
||||
[SugarTable("ext_product")]
|
||||
[Tenant(ClaimConst.TENANTID)]
|
||||
public class ProductEntity
|
||||
public class ProductEntity : EntityBase<string>
|
||||
{
|
||||
/// <summary>
|
||||
/// 自然主键.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_Id", IsPrimaryKey = true)]
|
||||
public string Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单编号.
|
||||
/// </summary>
|
||||
|
||||
@@ -7,7 +7,8 @@ namespace JNPF.Extend.Entitys;
|
||||
/// <summary>
|
||||
/// 项目计划
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 版 权:引迈信息技术有限公司(https://www.yinmaisoft.com)
|
||||
/// 作 者:JNPF开发平台组
|
||||
/// 日 期:2021-06-01.
|
||||
/// </summary>
|
||||
[SugarTable("EXT_PROJECTGANTT")]
|
||||
|
||||
@@ -7,7 +7,8 @@ namespace JNPF.Extend.Entitys;
|
||||
/// <summary>
|
||||
/// 日程安排
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com)
|
||||
/// 作 者:JNPF开发平台组
|
||||
/// 日 期:2021-06-01.
|
||||
/// </summary>
|
||||
[SugarTable("EXT_SCHEDULE")]
|
||||
|
||||
@@ -6,7 +6,8 @@ namespace JNPF.Extend.Entitys;
|
||||
/// <summary>
|
||||
/// 表格示例数据
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com)
|
||||
/// 作 者:JNPF开发平台组
|
||||
/// 日 期:2021-06-01 .
|
||||
/// </summary>
|
||||
[SugarTable("EXT_TABLEEXAMPLE")]
|
||||
|
||||
@@ -6,7 +6,8 @@ namespace JNPF.Extend.Entitys;
|
||||
/// <summary>
|
||||
/// 工作日志
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com)
|
||||
/// 作 者:JNPF开发平台组
|
||||
/// 日 期:2021-06-01 .
|
||||
/// </summary>
|
||||
[SugarTable("EXT_WORKLOG")]
|
||||
|
||||
@@ -7,7 +7,8 @@ namespace JNPF.Extend.Entitys;
|
||||
/// <summary>
|
||||
/// 工作日志分享
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com)
|
||||
/// 作 者:JNPF开发平台组
|
||||
/// 日 期:2021-06-01 .
|
||||
/// </summary>
|
||||
[SugarTable("EXT_WORKLOGSHARE")]
|
||||
|
||||
Reference in New Issue
Block a user