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.
29 lines
447 B
Java
29 lines
447 B
Java
package weaver.interfaces.aisin.cron.entity;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
/**
|
|
* @Author liang.cheng
|
|
* @Date 2024/11/22 10:00 AM
|
|
* @Description: 主表信息
|
|
* @Version 1.0
|
|
*/
|
|
|
|
@Data
|
|
@Builder
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
public class MainTableInfo {
|
|
|
|
private String workcode;
|
|
|
|
private String resourceId;
|
|
|
|
private String departmentId;
|
|
|
|
|
|
}
|