Rule.go 242 B

123456789
  1. package common
  2. type Rule struct {
  3. // 【文档命名规则】文档命名规则
  4. DocNamePattern string `json:"docNamePattern,omitempty"`
  5. // 【文档命名的值】文档命名的值
  6. DocNameValue string `json:"docNameValue,omitempty"`
  7. }