From 95f9ea7eb339c36cade6c67d0385c49ec2d81477 Mon Sep 17 00:00:00 2001 From: 935090232@qq.com <ak473600000> Date: Wed, 14 Apr 2021 19:39:45 +0800 Subject: [PATCH] Merge branch 'score_shop' into api_score_meger --- zq-erp/src/main/java/com/matrix/system/fenxiao/entity/ShopSalemanSettlement.java | 93 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 93 insertions(+), 0 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/fenxiao/entity/ShopSalemanSettlement.java b/zq-erp/src/main/java/com/matrix/system/fenxiao/entity/ShopSalemanSettlement.java new file mode 100644 index 0000000..66a9dc1 --- /dev/null +++ b/zq-erp/src/main/java/com/matrix/system/fenxiao/entity/ShopSalemanSettlement.java @@ -0,0 +1,93 @@ +package com.matrix.system.fenxiao.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import com.matrix.core.anotations.Extend; +import com.matrix.system.score.entity.BaseEntity; +import lombok.Data; + +/** + * @description 订单结算记录 + * @author yourName + * @date 2021-03-10 17:34 + */ +@Data +@TableName("shop_saleman_settlement") +public class ShopSalemanSettlement extends BaseEntity { + @Extend + private static final long serialVersionUID = 1L; + /** + * 结算编号头部编码 + */ + public static final String ORDERNO_START = "J"; + + /** + * 结算方式 1 线下结算 + */ + public static final Integer SETTLEMENTWAY_XXJS = 1; + + /** + * 结算方式 2 微信余额结算 + */ + public static final Integer SETTLEMENTWAY_YEJS = 2; + + + /** + * 结算编号 + */ + + + private String orderNo; + + /** + * 结算方式1,线下结算,2余额结算 + */ + + + private Integer settlementWay; + + /** + * 结算人数 + */ + + + private Integer manCount; + + /** + * 结算单数 + */ + + + private Integer orderCount; + + /** + * 结算金额 + */ + + + private Double amount; + + /** + * 结算人 + */ + + + private Integer userId; + + /** + * 备注 + */ + + + private String remark; + + /** + * 公司ID + */ + + + private Long companyId; + + + + +} \ No newline at end of file -- Gitblit v1.9.1