14 lines
355 B
Protocol Buffer
14 lines
355 B
Protocol Buffer
syntax = "proto3";
|
|
package common;
|
|
|
|
option java_package = "club.joylink.rtss.vo.common";
|
|
|
|
//数据的变动信息。数据的创建者、创建时间、更新者、更新时间
|
|
message ModifyInfoVO {
|
|
int64 creator_id = 1;
|
|
string create_time = 2;
|
|
int64 updater_id = 3;
|
|
string update_time = 4;
|
|
string creator_name = 5;
|
|
string updater_name = 6;
|
|
} |