This commit is contained in:
2024-09-14 10:48:09 +08:00
commit a5fa833937
192 changed files with 87641 additions and 0 deletions

8
model/types/types.go Normal file
View File

@@ -0,0 +1,8 @@
package types
type LawsuitType uint
const (
Individual LawsuitType = 0
Company LawsuitType = 1
)