zhangqian
2024-02-06 a6fc9e77e6f11c732c6f99065cfdae88d392f8bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package constvar
 
type UserType int
 
const (
    UserTypeSuper   UserType = iota + 1 // 超级管理员
    UserTypePrimary                     // 主账户
    UserTypeSub                         // 子账户
)
 
const SystemTypeSrm = 4 //srm账号
 
type CodeStandardType string
 
const (
    CodeStandardType_PurchaseOrder CodeStandardType = "采购单编码"
    CodeStandardType_Supplier      CodeStandardType = "供应商编码"
)