faker icon indicating copy to clipboard operation
faker copied to clipboard

[FEATURE] Generate unique value to struct's fields.

Open donnol opened this issue 2 years ago • 0 comments

type User struct {
        Id             int               // unique value in this struct, like: 1.
        Age          int               // unique value in this struct, other value except 1, like: 2.
        Name      string           // unique value in this struct, like: "Jack".
        Phone      string          // unique value in this struct, other vlaue except "Jack".
}  

donnol avatar Aug 04 '23 07:08 donnol