You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
416 B
Java
23 lines
416 B
Java
package com.engine.organization.entity.version;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
public class HrmSubCompanyVersion {
|
|
|
|
Integer id;
|
|
Integer subComId;
|
|
String subCompanyDesc;
|
|
String subCompanyCode;
|
|
String subCompanyName;
|
|
Integer supsSubComId;
|
|
Integer showOrder;
|
|
Integer canceled;
|
|
String description;
|
|
String operator;
|
|
Double version;
|
|
Date operateTime;
|
|
}
|