1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package com.hssx.cloudmodel.entity.vo;
- import com.hssx.cloudmodel.entity.Mould;
- import com.hssx.cloudmodel.entity.Project;
- import com.hssx.cloudmodel.entity.User;
- import java.util.ArrayList;
- import java.util.List;
- /**
- * Author: 吴涛涛 cuiyi@itany.com
- * Date : 2019 - 07 - 30 9:59
- * Description:<描述>
- * Version: 1.0
- */
- public class ProjectVO extends Project {
- private List<User> customUsers = new ArrayList<>();
- private List<User> ownerUsers = new ArrayList<>();
- private List<Mould> models = new ArrayList<>();
- public List<User> getCustomUsers() {
- return customUsers;
- }
- public void setCustomUsers(List<User> customUsers) {
- this.customUsers = customUsers;
- }
- public List<User> getOwnerUsers() {
- return ownerUsers;
- }
- public void setOwnerUsers(List<User> ownerUsers) {
- this.ownerUsers = ownerUsers;
- }
- public List<Mould> getModels() {
- return models;
- }
- public void setModels(List<Mould> models) {
- this.models = models;
- }
- @Override
- public String toString() {
- return "ProjectVO{" +
- "customUsers=" + customUsers +
- ", ownerUsers=" + ownerUsers +
- ", models=" + models +
- '}';
- }
- }
|