You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
819 B
14 lines
819 B
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
// TransactionPlanFiles is the golang structure for table transaction_plan_files.
|
|
type TransactionPlanFiles struct {
|
|
Id uint `json:"id" orm:"id" description:""` //
|
|
Jwcode int `json:"jwcode" orm:"jwcode" description:""` //
|
|
Content string `json:"content" orm:"content" description:""` //
|
|
Time int `json:"time" orm:"time" description:"提交时间"` // 提交时间
|
|
EncryptionId string `json:"encryptionId" orm:"encryption_id" description:""` //
|
|
}
|