From b267af1b816f646fa02c6f4983ebb3f9825cc192 Mon Sep 17 00:00:00 2001 From: pang.jiabao <pang_jiabao@163.com> Date: 星期六, 13 四月 2024 15:00:44 +0800 Subject: [PATCH] 单据管理:1.销售账号,在系统里面单据管理这里A销售员做的单子,在它的账号只显示自己的客户信息,不同的账号,看不到别人的信息,管理员是可以全部看的 2.增加客户名称,操作员搜索 --- src/main/java/com/zy/common/model/Shelves.java | 21 +++++++++++++-------- 1 files changed, 13 insertions(+), 8 deletions(-) diff --git a/src/main/java/com/zy/common/model/Shelves.java b/src/main/java/com/zy/common/model/Shelves.java index de2aa46..b759351 100644 --- a/src/main/java/com/zy/common/model/Shelves.java +++ b/src/main/java/com/zy/common/model/Shelves.java @@ -1,6 +1,7 @@ package com.zy.common.model; import com.alibaba.fastjson.JSON; +import com.core.common.Arith; import com.core.exception.CoolException; import java.util.ArrayList; @@ -110,14 +111,18 @@ } public static void main(String[] args) throws InterruptedException { - Shelves shelves = new Shelves(8,2); - System.out.println(shelves.nodes.toString()); - int start = 1; - while (true) { - System.out.println(start); - start = shelves.start(start); - Thread.sleep(500L); - } + + double remainder = Arith.divides(1,16 - 1, 16); + System.out.println(remainder); + System.out.println((int) remainder); +// Shelves shelves = new Shelves(8,2); +// System.out.println(shelves.nodes.toString()); +// int start = 1; +// while (true) { +// System.out.println(start); +// start = shelves.start(start); +// Thread.sleep(500L); +// } } } -- Gitblit v1.9.1