package constant type Action = string // 方法 const ( ActionDepartment Action = "BD_Department" // 部门 ActionStaff Action = "BD_Empinfo" // 员工 ActionFactory Action = "BD_Supplier" // 工厂 ActionContact Action = "BD_CommonContact" // 联系人 ActionCustom Action = "BD_Customer" // 客户 ActionPayment Action = "AR_receivable" // 付款单 ActionProduct Action = "BD_MATERIAL" // 物料 )