11 lines
203 B
Go
11 lines
203 B
Go
package dto
|
|
|
|
import "time"
|
|
|
|
// BaseDTO 基础数据传输对象
|
|
type BaseDTO struct {
|
|
ID EntityId `json:"id"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|