14 lines
349 B
Protocol Buffer
14 lines
349 B
Protocol Buffer
syntax = "proto3";
|
|
package common;
|
|
|
|
option java_package = "club.joylink.rtss.vo.common";
|
|
|
|
//数据的变动信息。数据的创建者、创建时间、更新者、更新时间
|
|
message ModifyInfoVO {
|
|
int64 creatorId = 1;
|
|
string createTime = 2;
|
|
int64 updaterId = 3;
|
|
string updateTime = 4;
|
|
string creatorName = 5;
|
|
string updaterName = 6;
|
|
} |