1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.vincent.rsf.server.system.constant;
|
| /**
| * @author Ryan
| * @version 1.0
| * @title SerialRuleCode
| * @description
| * @create 2025/3/4 17:02
| */
| public class SerialRuleCode {
|
| /**
| * 系统PO单同步编码规则
| */
| public final static String PURCHASE_CODE = "sys_purchase_code";
|
| /**
| * ASN通知单生成编码规则
| */
| public final static String SYS_ASN_ORDER = "sys_ans_order";
| }
|
|